Hide Replies and Reposts on X.com - Simplified

Hide replies and reposts instantly on X.com home timeline by detecting "Reposted" text.

当前为 2024-09-19 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Hide Replies and Reposts on X.com - Simplified
// @namespace    http://tampermonkey.net/
// @version      2.1
// @description  Hide replies and reposts instantly on X.com home timeline by detecting "Reposted" text.
// @author       
// @match        https://x.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const tweetSelector = '[data-testid="cellInnerDiv"]';
    const replyText = 'Replying to'; // Detect replies, including self-replies
    const repostText = 'Reposted'; // Detect reposts

    // Function to hide replies and reposts
    function hideRepliesAndReposts() {
        const tweets = document.querySelectorAll(tweetSelector);
        tweets.forEach((tweet) => {
            if (tweet.innerText.includes(replyText) || tweet.innerText.includes(repostText)) {
                tweet.style.display = 'none'; // Hide the tweet if it's a reply or repost
                console.debug("Hidden a reply or repost.");
            }
        });
    }

    // Run the hideRepliesAndReposts function immediately and on DOM changes
    function observeMutations() {
        const observer = new MutationObserver(hideRepliesAndReposts);
        observer.observe(document.body, { childList: true, subtree: true });
    }

    // Initial execution to hide replies and reposts
    window.addEventListener('load', () => {
        hideRepliesAndReposts(); // Run once on load
        observeMutations(); // Observe changes for dynamic content
    });

})();