您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
隐藏已屏蔽(隐藏)的推文, Hide blocked (hidden) tweets.
// ==UserScript== // @name 隐藏已屏蔽(隐藏)的推文, Hide blocked (hidden) tweets // @namespace http://tampermonkey.net/ // @version 0.1 // @description 隐藏已屏蔽(隐藏)的推文, Hide blocked (hidden) tweets. // @author You // @match https://twitter.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com // @grant none // ==/UserScript== (function () { "use strict"; function observeDom(targetNode, cb) { // Options for the observer (which mutations to observe) const config = { childList: true, subtree: true }; // Callback function to execute when mutations are observed const callback = (mutationList, observer) => { for (const mutation of mutationList) { cb(mutation); } }; // Create an observer instance linked to the callback function const observer = new MutationObserver(callback); // Start observing the target node for configured mutations observer.observe(targetNode, config); // Later, you can stop observing // observer.disconnect(); } observeDom(document.body, function (mutation) { if (mutation.addedNodes && mutation.addedNodes.length) { mutation.addedNodes.forEach((el) => { if ( el && el.getAttribute("data-testid") === "cellInnerDiv" && ( el.innerText.indexOf("这条推文来自一个你已") > -1 || el.innerText.indexOf("此推文來自你設為") > -1 || el.innerText.indexOf("This Tweet is from an account you") > -1) ) { // console.log("hit:", el); el.style.display = "none"; } }); } }); })();