Greasy Fork is available in English.

Remove Google Click-tracking

Removes Google's click-tracking from result links

// ==UserScript==
// @name         Remove Google Click-tracking
// @namespace    muvsado
// @version      0.1.6
// @description  Removes Google's click-tracking from result links
// @match        *://www.google.tld/search?*
// @license      Public Domain
// ==/UserScript==

let results = document.querySelectorAll('a[href^="/url"]');
for (let i = 0; i < results.length; i++) {
    let url = new URL(results[i].href);
    results[i].href = url.searchParams.get('q');
}