Skip to content

Instantly share code, notes, and snippets.

@Softwave
Created March 8, 2023 04:30
Show Gist options
  • Save Softwave/94c0f5c2b4f92a62c64c4cea8317b70a to your computer and use it in GitHub Desktop.
Save Softwave/94c0f5c2b4f92a62c64c4cea8317b70a to your computer and use it in GitHub Desktop.
// ==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