您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove redirects by Google!
当前为
- // ==UserScript==
- // @name Google Search Direct Links
- // @namespace Google Search Direct Links
- // @match *://*.google.*/*
- // @grant none
- // @version 1.0
- // @author K.D.
- // @description Remove redirects by Google!
- // ==/UserScript==
- function main(){
- let links= document.querySelectorAll(".Zu0yb.UGIkD.qzEoUe");
- links.forEach(link => {
- let gURL= link.closest("a");
- link.innerHTML= `<a href="${gURL.href}">${gURL.href}</a>`;
- link.style.background= "#98ff98";
- gURL.removeAttribute("ping");
- gURL.onclick=()=>{
- location.href= gURL.href;
- return false;
- };
- });
- }
- setInterval(main, 2000);