Removes Google's click-tracking from result links
当前为
// ==UserScript==
// @name Remove Google Click-tracking
// @namespace muvsado
// @version 0.1.3
// @description Removes Google's click-tracking from result links
// @match *://*.google.tld/*
// ==/UserScript==
if (document.querySelector('.egMi0.kCrYT')) {
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');
}
}