您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
谷歌搜索引擎使用时点开链接会有一个跳转过程,这个脚本可以关闭这个跳转过程。
当前为
// ==UserScript== // @name 谷歌链接直达 // @version 3 // @grant none // @namespace happyZYM // @description:zh-cn 谷歌搜索引擎使用时点开链接会有一个跳转过程,这个脚本可以关闭这个跳转过程。 // @match https://www.google.com/* // @match https://www.google.com.hk/* // @description 谷歌搜索引擎使用时点开链接会有一个跳转过程,这个脚本可以关闭这个跳转过程。 // ==/UserScript== var url = window.location.href.toLowerCase(); if (url.indexOf("www.google.com.hk") >= 0 || url.indexOf("www.google.com") >= 0 || url.indexOf("/search") >= 0 || url.indexOf("/url") >= 0) { var all = document.querySelectorAll("*"); for (var i = 0; i < all.length; i ++) { all[i].onmousedown = null; all[i].setAttribute("onmousedown", " "); } }