Last active
August 29, 2015 14:16
-
-
Save lonnen/5a795776e4163ee654f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!window.location.pathname.startsWith('/settings')) { | |
var garbage = Array.prototype.slice.call( | |
document.getElementsByClassName('dashboard') | |
); | |
garbage.push( | |
document.getElementsByClassName('trends-inner')[0], | |
document.getElementsByClassName('wtf-module')[0] | |
); | |
for (var i = 0; i < garbage.length; i++) { | |
garbage[i].remove(); | |
} | |
document.getElementById('timeline').style.float = "none"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated to ignore settings pages where you need those extra boxes