Greasy Fork is available in English.
用于加速完成会计继续教育
// ==UserScript== // @name 新疆会计继续教育加速 // @version 0.1 // @description 用于加速完成会计继续教育 // @author // @match https://kjgl.xjcz.gov.cn/accNet/index/toHome.htm* // @grant none // @namespace // ==/UserScript== $(function () { setInterval(() => { if (document.querySelector("video")) { document.querySelector("video").play(); } }, 3 * 1000); });