刷课专用

视频自动播放静音

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);