Skip to content

Instantly share code, notes, and snippets.

@cvan
Forked from lonnen/twitter.com.js
Last active August 29, 2015 14:16
Show Gist options
  • Save cvan/31a0915caf9c7b7dee69 to your computer and use it in GitHub Desktop.
Save cvan/31a0915caf9c7b7dee69 to your computer and use it in GitHub Desktop.
declutter Twitter
Array.prototype.slice.call(
document.querySelectorAll('.dashboard, .trends-inner, .wtf-module')
).forEach(function (el) {
el.remove();
});
var timeline = document.querySelector('#timeline');
timeline.style.float = 'none';
timeline.style.width = 'auto';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment