Twitter Cleaner

This script keeps Twitter clean.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Twitter Cleaner
// @namespace   https://github.com/mosaicer
// @author      mosaicer
// @description This script keeps Twitter clean.
// @version     1.0.11
// @match       https://twitter.com/*
// @run-at      document-idle
// @license     MIT
// ==/UserScript==
(() => {
  'use strict';

  const STRING_RESOURCES = {
    ja: {
      timelineList: 'タイムライン: リスト'
    },
    en: {
      timelineList: 'Timeline: List'
    }
  };
  const STRINGS = STRING_RESOURCES[navigator.language === 'ja' ? 'ja' : 'en'];

  const muteIfNeed = function tryToHideTweetNode(tweetNode) {
    if (isPromotion(tweetNode)) {
      tweetNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.style.display = 'none';
    }
  };

  const extractTweets = function extractTweetNoodesFrom(node) {
    return node.querySelectorAll('[data-testid="tweet"]');
  };

  const isPromotion = function checkIfTweetNodeIsPromotion(tweetNode) {
    return tweetNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode
      .getAttribute('data-testid') === 'placementTracking';
  };

  const isElement = function checkIfValueIsInstanceOfElement(value) {
    return value instanceof Element;
  };

  const hideListHeader =
    function tryToHideListHeaderAndDoNothingIfNotExists(node) {
      try {
        const target = node.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;

        if (target.getAttribute('aria-label') === STRINGS.timelineList) {
          node.parentNode.parentNode.parentNode.style.display = 'none';
        }
      } catch(e) {}
    };

  const rootNode = document.getElementById('react-root');
  new MutationObserver(mutations =>
    mutations.forEach(mutation =>
      mutation.addedNodes.forEach(node => {
        if (!isElement(node)) return;

        const tweets = extractTweets(node);
        tweets.forEach(n => muteIfNeed(n));

        hideListHeader(node);
      })
    )
  ).observe(rootNode, { childList: true, subtree: true });
})();