// ==UserScript== // @name 宏志助航计划 - 自动播放 // @namespace https://bbs.tampermonkey.net.cn/ // @version 1.0.4 // @description 自动点击“播放”按钮(根据辅助功能树识别) // @author 宿院网管 // @run-at document-idle // @match https://hzzh.chsi.com.cn/kc/xx/* // ==/UserScript== (function () { 'use strict'; const waitForPlayButton = () => { // 等待播放按钮出现 const interval = setInterval(() => { const playButton = document.querySelector('button[aria-label="播放"]'); if (playButton && playButton.offsetParent !== null) { playButton.click(); console.log('[宏志助航] 已自动点击播放按钮'); clearInterval(interval); } }, 300); }; // 等待 DOM 加载完成 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', waitForPlayButton); } else { waitForPlayButton(); } })();