您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动从百度跳转到必应
// ==UserScript== // @license MIT // @name block百度 // @namespace com.ct // @version 0.0.1 // @match http://www.baidu.com/* // @match https://www.baidu.com/* // @description 自动从百度跳转到必应 // ==/UserScript== function baiduRedirectToBingSerach() { window.open("https://www.bing.com/search?q=" + $('#kw') .val(), "_self"); } function baiduHomeRedirectToBingHome() { window.open("https://www.bing.com", "_self"); } if(window.location.search.lastIndexOf("wd=")>0 || window.location.search.lastIndexOf("word=")>0){ baiduRedirectToBingSerach(); }else{ if(window.location.href == "https://www.baidu.com/"){ baiduHomeRedirectToBingHome() } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址