Created
March 8, 2023 04:30
-
-
Save Softwave/94c0f5c2b4f92a62c64c4cea8317b70a 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 Hide Twitter Trending | |
// @version 1 | |
// @description Hides the "What's happening" sidebar on Twitter | |
// @run-at document-idle | |
// ==/UserScript== | |
// Greasemonkey script to hide the twitter trending page | |
setTimeout(function() { | |
document.querySelector("[aria-label='Timeline: Trending now']").remove(); | |
console.log("Annoyance deleted. ;)"); | |
}, 1000); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment