Greasy Fork is available in English.
a very simple Google redirect remove, maybe
当前为
// ==UserScript==
// @name Google去重定向
// @namespace http://weibo.com/zheung
// @version 1.0
// @description a very simple Google redirect remove, maybe
// @include https://www.google.com/*
// @include http://www.google.com/*
// @copyright DanoR
// ==/UserScript==
var otitle = document.querySelectorAll("a");
for(i=0;i<otitle.length;i++)
if(otitle[i].getAttribute('onmousedown') != null)
otitle[i].removeAttribute('onmousedown');