Skip to content

Instantly share code, notes, and snippets.

@GitHub-Mike
Last active October 1, 2022 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitHub-Mike/58ff676bc91fbf33639083d920101dc7 to your computer and use it in GitHub Desktop.
Save GitHub-Mike/58ff676bc91fbf33639083d920101dc7 to your computer and use it in GitHub Desktop.
// ==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