Skip to content

Instantly share code, notes, and snippets.

@yayMark
Last active March 8, 2020 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yayMark/c54bf9c981d9ebe805ebb4689c65cb6d to your computer and use it in GitHub Desktop.
Save yayMark/c54bf9c981d9ebe805ebb4689c65cb6d to your computer and use it in GitHub Desktop.
JS: hide trending on Twitter
const sidebar = document.querySelectorAll('[data-testid=sidebarColumn]')[0];
const trending = sidebar.querySelector('div > div > div > div > div > div:nth-child(3)');
trending.style.display = 'none';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment