// ==UserScript== // @name 🥇融学-chinahrt.com通用刷课【影刃】 // @namespace https://doc.yingren.xyz // @version 1.0 // @description chinahrt.com-融学刷课,支持宜宾市专业技术人员继续教育网、天津市专业技术人员继续教育网、四川省专业技术人员继续教育网、甘肃省专业技术人员继续教育网络平台、内蒙古自治区专业技术人员继续教育在线 // @author 影刃 // @match *://*.chinahrt.com/* // @match *://*.scjxjypx.com/* // @grant none // @run-at document-start // @license GPL 3 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 自动播放和解除光标限制 window.beforeInterval = setInterval(function() { if (attrset) { attrset.ifPauseBlur = false; // 解除光标限制 attrset.autoPlay = 1; } }, 50); // 延迟后覆盖 check 函数 window.endInterval = setTimeout(function() { clearInterval(window.beforeInterval); // 覆盖 check() 函数 window.check = function() { }; clearInterval(window.endInterval); }, 500); // 自动播放 window.anyInterval = setInterval(function() { const videoElement = document.querySelector('video'); if (videoElement) { videoElement.muted = true; videoElement.play().catch((error) => { console.error('Error playing video:', error); }); } else { console.error('Video element not found'); } }, 500); })();