Created
July 25, 2022 17:34
-
-
Save Lucretiel/695d4b5cfaef77e064ef06bdb99a4346 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name No Trending | |
// @version 0.1 | |
// @description Turn off twitter trending | |
// @author You | |
// @match https://twitter.com/* | |
// @icon https://www.google.com/s2/favicons?domain=twitter.com | |
// @require https://raw.githubusercontent.com/muicss/sentineljs/master/dist/sentinel.min.js | |
// @grant none | |
// ==/UserScript== | |
sentinel.on([ | |
'[aria-label*="trending now" i]', | |
], node => node.remove()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment