Greasy Fork is available in English.
Remove all link redirection on Google Search Results,and Google image Search!
当前为
// ==UserScript==
// @name 移除Google的搜索结果重定向,包括其图片搜索
// @namespace google.com.xinggsf
// @description Remove all link redirection on Google Search Results,and Google image Search!
// @homepageURL http://greasyfork.icu/scripts/19713
// updateURL http://greasyfork.icu/scripts/19713.js
// @include https://www.google.*
// @include https://prism-kangaroo.glitch.me/search?*
// @grant none
// @version 2017.11.15
// ==/UserScript==
Object.defineProperty(window, 'rwt', {
writable: false
});
main && main.addEventListener('mousedown', ev => {//图片搜索
if (ev.target.matches('img') && ev.target.parentNode.matches('a[jsaction^="mousedown:irc."]'))
ev.stopPropagation();
}, !1);