Greasy Fork

Greasy Fork is available in English.

HIDE REPLY TWEETS FROM TIMELINE

Hide X.com (Twitter) replies that aren't from the same author. Still shows threads.

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

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         HIDE REPLY TWEETS FROM TIMELINE
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Hide X.com (Twitter) replies that aren't from the same author. Still shows threads.
// @author       Doxie
// @match        https://x.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function hideElements() {
        const cells = document.querySelectorAll('[aria-label="Timeline: Conversation"] [data-testid="cellInnerDiv"]');
        let mainTweetNotFound = true;
        let srcProfilePic;
        cells.forEach((cell) => {
            if (cell.querySelector('[data-testid="tweetButtonInline"]')) {
                mainTweetNotFound = false;
                srcProfilePic = cell.querySelector('img')?.src;
            } else if (mainTweetNotFound) {
                // Does nothing for tweets above the main one
            } else {
                let srcInCurrent = cell.querySelector('img')?.src;
                if (srcInCurrent === srcProfilePic) {
                    // Does nothing, as it's the same author
                } else {
                    cell.style.display = 'none';
                }
            }
        });
    }

    document.addEventListener('DOMContentLoaded', hideElements);

    const observer = new MutationObserver(hideElements);
    observer.observe(document.body, { childList: true, subtree: true });
})();