您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
视频自动播放静音
// ==UserScript== // @name 刷课专用 // @namespace http://tampermonkey.net/ // @version 0.1.2 // @license AGPL-3.0 // @description 视频自动播放静音 // @author Tenfond // @match http*://www.icourse163.org/* // @match http*://*.chaoxing.com/* // @grant none // @run-at document-body // ==/UserScript== (style => { style.innerHTML = "div#j-anchorContainer" + "{display: none !important; height: 0 !important; width: 0 !important; visibility: hidden !important; max-height: 0 !important; max-width: 0 !important; opacity: 0 !important;}"; document.head.insertBefore(style, document.head.firstChild); })(document.createElement("style")); setInterval(() => { for (let video of document.querySelectorAll("video")) { window.focus(); document.body.focus(); video.muted = true; video.playbackRate = 2; video.play(); } }, 300);