Skip to content

Instantly share code, notes, and snippets.

@thepsion5
Created July 10, 2020 16:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thepsion5/e41ce747b76b77a43c3401676f50e7a4 to your computer and use it in GitHub Desktop.
Save thepsion5/e41ce747b76b77a43c3401676f50e7a4 to your computer and use it in GitHub Desktop.
Tampermonkey Script to hide the "Trending Now" sidebar on Twitter
// ==UserScript==
// @name Trending Now No More
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Removes the Trending Now section on Twitter
// @author Sean Mumford
// @match https://twitter.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.styleSheets[0].insertRule("div[aria-label='Timeline: Trending now'] { display: none }");
})();
@themegabyte
Copy link

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment