Fix google ulr redirects

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

当前为 2019-10-26 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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";

})();