Created
April 12, 2012 22:58
-
-
Save NuckChorris/2371652 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
| // ==UserScript== | |
| // @name Turntable De-magnifier | |
| // @description Removes that wretched laptop magnifying glass from Turntable.fm | |
| // @match http://turntable.fm/* | |
| // ==/UserScript== | |
| var style = document.createElement('style'); | |
| style.innerHTML = '#zoomView { display: none !important; } .avatar_laptop { cursor: pointer; } #tfmExtended { left: 0 !important; margin-left: 0px !important; z-index: 5 !important; } .remove { margin-top: 0px !important; }'; | |
| document.getElementsByTagName('head')[0].appendChild(style); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment