您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Gets rid of (most if not all) MCYT selfie day trends on Twitter
// ==UserScript== // @name MCYT Selfie Days Begone! // @namespace http://krizisdev.github.io/ // @version 0.1 // @description Gets rid of (most if not all) MCYT selfie day 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 = [ "dttwtselfieday", "punztwtselfieday", "sleepytwtselfieday", "minxtwtselfieday", "blackmcytselfieday", "clingytwtselfieday", "spifeyselfieday", "gappletwtselfieday", "hermittwtselfieday", "ayuptwtselfieday", "tiredtwtselfieday", "yiptwtselfieday", "nikiselfieday", "pugtwtselfieday", "filimcsd", "smokecityselfies", "mutetwtselfieday", "innittwtselfieday", "muffinselfieday", "natetwtselfieday", "asianmcyttwtselfieday", "honktwtselfieday", "hispanicmcyttwtselfieday", "shubtwtselfieday", "selfiesforcelestia", "f1nnselfieday", "deotwtselfieday", "cpktwtselfieday", "fruitninjaselfieday", "tubbotwtselfieday", "patchestwtselfieday", "transmcyttwtselfieday", "bootwtselfieday", "awesamtwtselfieday", "quacktwtselfieday", "technotwtselfieday" ]; 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); });