Greasy Fork is available in English.

Remove Google Click-tracking

Removes Google's click-tracking from result links

Stan na 18-03-2018. Zobacz najnowsza wersja.

// ==UserScript==
// @name         Remove Google Click-tracking
// @description  Removes Google's click-tracking from result links
// @version      2.0.0
// @namespace    skeeto
// @license      Public Domain
// @include      *://*.google.tld/*
// @grant        none
// ==/UserScript==

Object.defineProperty(unsafeWindow, 'rwt', {
    value: function() {},
    writable: false
});