Fix google ulr redirects

Prevent redirect from google search results to the redirector site google.com/url

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Fix google ulr redirects
// @version      0.1
// @description  Prevent redirect from google search results to the redirector site google.com/url
// @author       CoilBlimp
// @grant        none
// @include      http://*.google.com/search*
// @include      https://*.google.com/search*
// @include      https://*.google.*/search*
// @namespace https://greasyfork.org/users/392376
// ==/UserScript==

(function() {
    let alist = document.getElementsByTagName("a");

    let amountOfChangedUrls = 0;

    let changedUrlDiv = document.createElement("div");
    changedUrlDiv.id = "changedUrlDiv";
    changedUrlDiv.style.cssText = "background: #333333; z-index: 1000000; color: white; position: fixed; top: 13em; right: 1%; border: solid 2px #aaa !important; border-radius: 5px; padding: 5px;"
    changedUrlDiv.innerHTML = "parsing urls...";
    document.body.appendChild(changedUrlDiv);

    for(let i = alist.length-1; i >=0; i--){
        if(alist[i].hasAttribute("onmousedown")){
            alist[i].removeAttribute("onmousedown")
            amountOfChangedUrls++;
        }
    }
    console.log("Changed " + amountOfChangedUrls + " urls ")
    changedUrlDiv.innerHTML = "Changed " + amountOfChangedUrls + " urls";

})();