DreamSMP Trends Begone!

Gets rid of (almost) all DreamSMP trends on Twitter

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         DreamSMP Trends Begone!
// @namespace    http://krizisdev.github.io/
// @version      0.4
// @description  Gets rid of (almost) all DreamSMP trends on Twitter
// @author       KrizisDev
// @match        https://twitter.com/*
// @require      https://greasyfork.org/scripts/31940-waitforkeyelements/code/waitForKeyElements.js?version=209282
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// @grant        none
// ==/UserScript==
/* globals $, waitForKeyElements */

$(document).ready(function() {
    function _f(jNode) {
        var wordList = [
            "dreamsmp", "dream", "georgenotfound", "george", "callahan", "sapnap", "awesamdude", "ponk", "dropsbyponk", "badboyhalo",
            "tommyinnit", "tommy", "tubbo", "fundy", "punz", "purpled", "wilbur soot", "wilbur", "soot", "ghostbur", "skeepy",
            "jack manifold", "jack", "manifold", "quackity", "mexican dream", "karl jacobs", "karl", "jacobs", "hbomb", "technoblade",
            "techno", "antfrost", "philza", "ph1lza", "lazarbeam", "ranboo"
        ];

        var words = new RegExp(wordList.join("|"));
        if (words.test(jNode.find(".css-901oao.css-16my406.r-poiln3.r-bcqeeo.r-qvutc0").text().toLowerCase())) {
            jNode.find(".css-901oao.css-16my406.r-poiln3.r-bcqeeo.r-qvutc0").parent().parent().parent().parent().hide();
        }
    }

    waitForKeyElements("[data-testid='trend'", _f);
});