Created
February 1, 2012 10:29
-
-
Save eik3/c4e6b1095bca4113ba68 to your computer and use it in GitHub Desktop.
This file contains 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
// ==UserScript== | |
// @name WorldTimeBuddy hacks | |
// @description | |
// @namespace http://www.worldtimebuddy.com/ | |
// @include http://www.worldtimebuddy.com/* | |
// @match http://www.worldtimebuddy.com/* | |
// ==/UserScript== | |
(window.setTimeout(function(){ | |
document.getElementsByClassName("wrapper")[0].removeChild(document.getElementById("toprek")); | |
document.getElementsByClassName("wrapper")[0].removeChild(document.getElementById("social")); | |
document.getElementsByClassName("wrapper")[0].removeChild(document.getElementsByClassName("rounded3")[1]); | |
}(), 1000)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment