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

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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