Skip to content

Instantly share code, notes, and snippets.

@uu59
Created December 10, 2010 14:10
Show Gist options
  • Save uu59/736237 to your computer and use it in GitHub Desktop.
Save uu59/736237 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name hide-geolocation-at-google-search
// @namespace http://twitter.com/uu59
// @version 1.0.0
// @include http://*.google.*/search*
// ==/UserScript==
(function(w){
var trap = w.document.getElementById('lc');
trap.parentNode.removeChild(trap);
})(typeof unsafeWindow == typeof void(0) ? window : unsafeWindow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment