您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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(?:\.\w+)+\/(?:search|webhp|#)/ // @grant none // @version 2016.5.16 // ==/UserScript== "use strict"; if (window.chrome) NodeList.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; //let soutu = location.hash.startsWith('#imgrc='), new MutationObserver(rs => { let a, c = document.querySelectorAll('a[onmousedown*="return rwt"]'); for (a of c) a.removeAttribute('onmousedown'); c = document.querySelectorAll('a[jsaction^="mousedown:irc."]'); for (a of c) { a.removeAttribute('jsaction'); a.outerHTML = a.outerHTML; } }).observe(document.body, { childList: true, subtree: true });