您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动跳过
// ==UserScript== // @name 就创业直播平台自动跳过题目 // @version 2.3 // @description 自动跳过 // @author Ck.2655257336 // @match https://atcsu.wnssedu.com/course/* // @icon https://atcsu.wnssedu.com/favicon.ico // @grant none // @namespace https://greasyfork.org/users/583848 // ==/UserScript== (function() { 'use strict'; setInterval(() => { if (document.querySelector('.pv-ask-skip ')) { document.querySelector('.pv-ask-skip ').click() } }, 500); setInterval(() => { document.querySelector(".chapter_list").innerHTML += ` <li><a href="#" onclick="showVideo(this, 986, 759, 358,0)"><span class="chapter_subtit_second"></span><span class="chapter_subtit_third" style="color:red;font-weight: 900;" title="郭臣风你肯定挂科">郭臣风你肯定挂科!!!!</span></a><a href="# " onclick="showVideo(this, 986, 759, 358,1)"><img class="lookPrdImg" style="display:none" src="http://static.wnssedu.com/images/icon/[email protected]" alt=""></a><span class="chapter_subtit_four">傻逼</span></li> ` }, 1000); })();