// ==UserScript==
// @name X バナー削除
// @namespace local
// @version 1.0
// @description Xの下部固定バナーのみ削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeBottomBanner() {
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.bottom === '0px' &&
el.offsetWidth >= window.innerWidth * 0.9 &&
el.offsetHeight < window.innerHeight * 0.5
) {
el.remove();
}
});
}
new MutationObserver(removeBottomBanner).observe(document.body, {
childList: true,
subtree: true
});
removeBottomBanner();
})();// ==UserScript==
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
【Android】Via Browser - Fast & Light ★2
693名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:45.97ID:mKtlGmtG694名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:59.23ID:mKtlGmtG // ==UserScript==
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
695名無しさん@お腹いっぱい。
2026/07/02(木) 20:01:30.00ID:mKtlGmtG >>693
これはスルー
これはスルー
696名無しさん@お腹いっぱい。
2026/07/02(木) 20:02:12.91ID:mKtlGmtG // ==UserScript==
// @name Google「他の人はこちらも検索」削除(安定版)
// @namespace local
// @version 1.0
// @description 検索結果を壊さず関連検索ブロックのみ削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('g-more-link, .Wt5Tfe').forEach(el => {
const text = (el.innerText || '').trim();
if (!text.includes('他の人はこちらも検索')) return;
const block =
el.closest('div[data-hveid]') ||
el.closest('g-section-with-header') ||
el.parentElement;
if (block) block.remove();
});
}
clean();
const observer = new MutationObserver(clean);
observer.observe(document.body, { childList: true, subtree: true });
})();
// @name Google「他の人はこちらも検索」削除(安定版)
// @namespace local
// @version 1.0
// @description 検索結果を壊さず関連検索ブロックのみ削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('g-more-link, .Wt5Tfe').forEach(el => {
const text = (el.innerText || '').trim();
if (!text.includes('他の人はこちらも検索')) return;
const block =
el.closest('div[data-hveid]') ||
el.closest('g-section-with-header') ||
el.parentElement;
if (block) block.remove();
});
}
clean();
const observer = new MutationObserver(clean);
observer.observe(document.body, { childList: true, subtree: true });
})();
697名無しさん@お腹いっぱい。
2026/07/02(木) 20:02:31.59ID:mKtlGmtG // ==UserScript==
// @name Google 注目商品 削除(安全版)
// @namespace local
// @version 1.1
// @description 「注目されている商品」だけを安全に削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('h3, div, span').forEach(el => {
const text = (el.innerText || '').trim();
if (text !== '注目されている商品') return;
const block =
el.closest('g-scrolling-carousel') ||
el.closest('div[data-hveid]');
if (block) {
block.remove();
}
});
}
clean();
new MutationObserver(clean).observe(document.body, {
childList: true,
subtree: true
});
})();
// @name Google 注目商品 削除(安全版)
// @namespace local
// @version 1.1
// @description 「注目されている商品」だけを安全に削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('h3, div, span').forEach(el => {
const text = (el.innerText || '').trim();
if (text !== '注目されている商品') return;
const block =
el.closest('g-scrolling-carousel') ||
el.closest('div[data-hveid]');
if (block) {
block.remove();
}
});
}
clean();
new MutationObserver(clean).observe(document.body, {
childList: true,
subtree: true
});
})();
レスを投稿する
ニュース
- 佐藤二朗 ハラスメント報道にコメント「大変残念。全ての事実が明らかになることを望みます」所属事務所「到底受け入れられない」★30 [Ailuropoda melanoleuca★]
- 町の洋菓子店が大ピンチ 値上げしても売り上げ減 倒産過去最多 ★2 [蚤の市★]
- 日本人の食料品、20000品目が値上げ [バイト歴50年★]
- 病院搬送の木下優樹菜 救急隊員の質問や態度に“ブチギレ” 「これなんの時間?」「声が出なくて逆によかったよ」★2 [ネギうどん★]
- “フェイク情報”を信じやすい人の特徴とは? 視野を狭くするSNS空間の“三重構造” (『嘘で満ちていく社会』朝日新書) ★2 [少考さん★]
- スマイリーキクチ、橋本愛への誹謗中傷めぐり「人格を否定したり、仕事をやめろと脅す。正義感って何でしょうね?」 [muffin★]
- 🇻🇳ベトちゃんドクちゃん👊😅😅👊🏡
- バツイチ再婚2年目だけど既に離婚を考えている
- 謎の人「あなたは間違っている。あなたは自分を誇ってはいけない。あなたが賢く正直なら私の言うことを信じるだろう」
- 🏫🔥東京・北区の小学校火災、40代の女性教員「私物のストーブ持ち込み私服乾かしていた」 [718678614]
- 日本人の食料品、20000品目が値上げ😲 [521921834]
- 高市早苗より前に米国連邦議会立法調査官(congressional fellow)を務めていた日本人が見つかってしまう…日本人初はサナのはずなのに [731544683]