プロモーションを即座に消します
当前为 
// ==UserScript==
// @name         Twitter プロモリムーバー
// @namespace    https://gf.qytechs.cn/ja/users/175598
// @version      20.11
// @description  プロモーションを即座に消します
// @author       N.Y.Boyu
// @match        https://twitter.com/*
// @match        https://mobile.twitter.com/*
// @grant        none
// @license      MIT
// ==/UserScript==
(function(){
    let check=function(t){
        topfor: for(let target of t.querySelectorAll('[data-focusable="true"]:not([data-tpr])')){
            for(let path of target.getElementsByTagName("path")){
                if(path.getAttribute("d")==="M20.75 2H3.25C2.007 2 1 3.007 1 4.25v15.5C1 20.993 2.007 22 3.25 22h17.5c1.243 0 2.25-1.007 2.25-2.25V4.25C23 3.007 21.993 2 20.75 2zM17.5 13.504c0 .483-.392.875-.875.875s-.875-.393-.875-.876V9.967l-7.547 7.546c-.17.17-.395.256-.62.256s-.447-.086-.618-.257c-.342-.342-.342-.896 0-1.237l7.547-7.547h-3.54c-.482 0-.874-.393-.874-.876s.392-.875.875-.875h5.65c.483 0 .875.39.875.874v5.65z"){
                    console.log("TPR: First Hit");
                    target.dataset.tpr="detected";continue topfor;
                }
            }
            for(let {textContent:str} of target.querySelectorAll(`\
div:last-child > svg[viewBox="0 0 24 24"]:first-child + :last-child > span:first-child:last-child,
div:last-child > svg[viewBox="0 0 24 24"]:first-child + :last-child > span:first-child ~ span:last-child`)){ //name with emoji pattern
                if((str.lastIndexOf("プロモーション")+7===str.length)&&(str.length>=7)){
                    console.log("TPR: Second Hit");
                    target.dataset.tpr="detected";continue topfor;
                }
            }
            target.dataset.tpr="checked";
        }
    };
    (new MutationObserver(mutationRecords => {
        for(let {target:t} of mutationRecords)check(t);
    })).observe(document.body,{childList:true,subtree:true});
    check(document.body);
    let style=document.createElement("style");
    style.innerHTML='[data-focusable="true"][data-tpr="detected"]{ display:none!important; }';
    document.body.appendChild(style);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址