昆明市导游在线培训系统 实现无人值守播放视频

2023-08-08 13:17:22 浏览数 (1)

网页会判断鼠标是否在页面上,不在2s后则会被暂停, 目前脚本只是让他自动运行,因需求不高,故到此结束 油猴脚本:点我

代码语言:javascript复制
// ==UserScript==
// @name         昆明市导游在线培训系统
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  用于解锁视频检测
// @author       luwenjie
// @match        *://*.ylxue.net/*
// @license      MIT
// @match        http://kmlypx.ylxue.net/LearningCenter/LearningCourseVideo?cid=42599&tid=1715
// @match        http://kmlypx.ylxue.net/LearningCenter/LearningCourseVideo?cid=46238&tid=1715
// @icon         https://www.google.com/s2/favicons?domain=baidu.com
// @grant        none
// ==/UserScript==

(function() {
setInterval(function () { //每1秒刷新一次图表
         //需要执行的代码写在这里
    $(".layui-layer-btn0").click();
    }, 1000);

})();

仅实现了,暂停后自动播放

0 人点赞