// ==UserScript== // @name 进入b站直接跳到热门 // @description 先点下面这问号👇?👇,查看教材安装相应浏览器的插件再安装本脚本 // @namespace bilibili // @author LiHaoMing // @version 1.1 // @match https://www.bilibili.com/ // @grant GM_log // @grant GM_addStyle // @grant GM_setValue // @grant GM_getValue // @grant GM_xmlhttpRequest // @grant GM_deleteValue // @license MIT License // @contributionURL // @contributionAmount 1¥ // @downloadURL none // ==/UserScript== (function () { setInterval(() => { if (document.getElementsByClassName('con').children[2]) { //判断是否存在 document.getElementsByClassName('con').children[2].click(); //点击 } }, 300)//每3秒判断一次是否弹出充电鸣谢 })();//立即运行