Last active
October 1, 2022 11:45
-
-
Save GitHub-Mike/58ff676bc91fbf33639083d920101dc7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== | |
(function() { | |
'use strict'; | |
let newUrl = window.location.href.split('&')[0]; | |
window.history.replaceState({},'', newUrl); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment