您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
更好地专注于搜索结果
当前为
// ==UserScript== // @name Baidu Focus Assistant // @namespace https://www.maxalex.tk // @version 0.1 // @description 更好地专注于搜索结果 // @author MaxAlex, aka zyf722 // @match https://www.baidu.com/* // @grant none // ==/UserScript== // Configuration Begin var trytime = 100; // 检测页面变化时间间隔(ms) // Configuration End var url = window.location.href $("#content_right").css("cursor","not-allowed"); $("#content_right").css("pointer-events","none"); $("#content_right").css("opacity","0.45"); $("#content_right").css("filter","blur(6px)"); setInterval(function () { if (window.location.href != url) { $("#content_right").css("cursor","not-allowed"); $("#content_right").css("pointer-events","none"); $("#content_right").css("opacity","0.45"); $("#content_right").css("filter","blur(6px)"); } },trytime);