Twitter Custom Filter

Hide self-quoted tweets from specific users and remove specific tweets

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Twitter Custom Filter
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hide self-quoted tweets from specific users and remove specific tweets
// @author       24bit
// @match        https://x.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const users = ["4SCRF"];
    const keywords = ["curiouscat.live", "onvo.me", "curiouscat.me","codenames.game", "tellonym.me"];
    const bypassUser = "/s_9953";

    const checkTweets = () => {
        const tweets = document.querySelectorAll('article, div[data-testid="cellInnerDiv"]');

        tweets.forEach(tweet => {
            const tweetText = tweet.textContent;
            const tweetAuthorLink = tweet.querySelector('a[href]');

            if (tweetAuthorLink && tweetAuthorLink.getAttribute('href') === bypassUser) {
                return;
            }

            if (keywords.some(keyword => tweetText.includes(keyword)) ||
                users.some(user => (tweetText.match(new RegExp(`@${user}`, 'g')) || []).length > 1)) {
                tweet.style.display = 'none';
            }
        });
    };

    // Check tweets when page is loaded
    checkTweets();

    // Check new tweets every 5 milliseconds
    setInterval(checkTweets, 5);
})();