Skip to content

Instantly share code, notes, and snippets.

@NuckChorris
Created April 12, 2012 22:58
Show Gist options
  • Select an option

  • Save NuckChorris/2371652 to your computer and use it in GitHub Desktop.

Select an option

Save NuckChorris/2371652 to your computer and use it in GitHub Desktop.
// ==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