Xを開いた時のポップアップ系削除するスクリプト
// ==UserScript==
// @name Xポップ消し
// @namespace https://viayoo.com/
// @version 0.1
// @description Xのポップアップを削除
// @author You
// @run-at document-end
// @match https://x.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeBanner() {
document.querySelectorAll('[role="dialog"]').forEach(el => el.remove());
document.querySelectorAll('[aria-modal="true"]').forEach(el => el.remove());
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.backgroundColor.startsWith('rgba(')
) {
el.remove();
}
});
document.body.style.overflow = 'auto';
document.documentElement.style.overflow = 'auto';
}
setInterval(removeBanner, 500);
})();
【Android】Via Browser - Fast & Light ★2
683名無しさん@お腹いっぱい。
2026/06/16(火) 17:46:05.41ID:UXeyXj87684名無しさん@お腹いっぱい。
2026/06/24(水) 20:09:54.47ID:uq5+GGD1 >>683
入れてみたが稀にバグるよ
入れてみたが稀にバグるよ
685名無しさん@お腹いっぱい。
2026/07/01(水) 23:45:02.21ID:ucxorWoF すまん、スレ2個あったからあっちにも書いちゃったが
ホーム画面の検索フォームの🔍の表示が遅くてタップしてから5秒くらい待たされるのなんとかして
ホーム画面の検索フォームの🔍の表示が遅くてタップしてから5秒くらい待たされるのなんとかして
2026/07/02(木) 08:19:02.69ID:vkT/Vjh8
687名無しさん@お腹いっぱい。
2026/07/02(木) 08:23:28.74ID:OPUGFrO6 バグだからアプデ対応待ちかな
688名無しさん@お腹いっぱい。
2026/07/02(木) 11:22:09.22ID:CsBAhIIL689名無しさん@お腹いっぱい。
2026/07/02(木) 13:32:00.60ID:V0yg0nTB >>688
いいってことよ 気にすんな お役に立てて 良かったよ たまには君も人の役に立つ側になれよ
いいってことよ 気にすんな お役に立てて 良かったよ たまには君も人の役に立つ側になれよ
690名無しさん@お腹いっぱい。
2026/07/02(木) 16:59:12.21ID:OPUGFrO6 デベロッパーに連絡
サイトに連絡etc何かしらアクション起こす人は偉い
サイトに連絡etc何かしらアクション起こす人は偉い
691名無しさん@お腹いっぱい。
2026/07/02(木) 19:54:19.99ID:90jXWTRj >>690
照れるな
照れるな
692名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:11.86ID:mKtlGmtG // ==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();
})();
// @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();
})();
693名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:45.97ID:mKtlGmtG // ==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();
})();
// @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();
})();
694名無しさん@お腹いっぱい。
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
});
})();
レスを投稿する
ニュース
- 橋本愛が所属の芸能事務所が声明発表「フジテレビ社による報道が事実との認識」中傷を警察に相談★4 [muffin★]
- 佐藤二朗「精神的に落ち込み、静養に」関係者が明かすハラスメント騒動の影響 ★7 [muffin★]
- 箕輪厚介が痛烈指摘 「サッカー日本代表、なにかを成し遂げたみたいな会見の雰囲気だな」「二大会連続で目標達成してない以上…」★3 [冬月記者★]
- 【牛丼】すき家30円値上げ 8日から並盛480円に [蚤の市★]
- れいわ・山本太郎代表が道路交通法違反で運転免許停止 法定速度時速80キロの道路を149キロで走行 ★2 [尺アジ★]
- 町の洋菓子店が大ピンチ 値上げしても売り上げ減 倒産過去最多 ★4 [蚤の市★]
- なっとうにおろしつけて食うつもりだったのにまんまで食っちゃった
- 【絶望】佐藤二朗、時系列で見れば誰が見ても言い逃れできないパワハラだったwwwwwwwwwwwwwwwwwwww [802034645]
- ぽまいそろそろ寝ようぜ
- 田舎に居た時は都会に住んだら深夜徘徊たくさんしよ♪って思ってたけどいざ引っ越すと全くしない
- 【画像】猛烈に臭いアタイの使用済みタンポン💕
- ヤニねこのお🏡👊🐱👊