🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

隐藏已屏蔽(隐藏)的推文, Hide blocked (hidden) tweets

隐藏已屏蔽(隐藏)的推文, Hide blocked (hidden) tweets.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==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";
        }
      });
    }
  });
})();