Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Cleanup Google Search URLs
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Deactivate Google Search Tracking
// @author You
// @match https://*.google.de/search*
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.de
// @grant none
// ==/UserScript==
// closure pattern
( function( window, document, undefined ) {
console.log('Hello world!');
})( this,this.document );
// single-lettered minified version
(function(w,d,u){console.log('Hello world!');})(this,this.document);
// self executing anonymous function
(function(){})()