Greasy Fork is available in English.

X Ad remover

remove X ads

// ==UserScript==
// @name         X Ad remover
// @name:en      X Ad remover
// @name:ja      X 広告 ブロッカー
// @namespace    https://x.com/
// @version      2024-05-18
// @description       remove X ads
// @description:en    remove X ads
// @description:ja    広告 ブロック
// @author       ぐらんぴ
// @match        https://twitter.com/*
// @match        https://x.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant        none
// @license      MIT
// ==/UserScript==

window.addEventListener('scroll', ()=>{
    var ads = document.querySelectorAll(".css-175oi2r.r-1awozwy.r-18u37iz > div > span");
    for(const ad of ads){
        if(ad.textContent == "Ad" || ad.textContent.match("プロモーション") || ad.textContent.match("프로모션") || ad.textContent.match("推荐") || ad.textContent.match("推廣") || ad.textContent.match("مُروَّج") || ad.textContent.match("Sponsorlu")){
            ad.closest("article").innerHTML = '';
        }
    }
});