Twitter Remove Trends Panel

Remove the in-your-face trends panel on the side of your feed.

  1. // ==UserScript==
  2. // @name Twitter Remove Trends Panel
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  5. // @description Remove the in-your-face trends panel on the side of your feed.
  6. // @author Cromachina
  7. // @match https://*.twitter.com/*
  8. // @match https://*.x.com/*
  9. // @grant none
  10. // @icon https://www.google.com/s2/favicons?domain=twitter.com
  11. // @license MIT
  12. // ==/UserScript==
  13. /*jshint esversion: 6 */
  14.  
  15. (function() {
  16. 'use strict';
  17. // Constantly attempt to remove the trends panel, as navigating the site will regenerate it.
  18. setInterval(function ()
  19. {
  20. document.querySelector('div[aria-label="Timeline: Trending now"]')?.remove();
  21. }, 500);
  22. })();