视频自动播放静音
当前为
// ==UserScript==
// @name 刷课专用
// @namespace http://tampermonkey.net/
// @version 0.1.1
// @license AGPL-3.0
// @description 视频自动播放静音
// @author Tenfond
// @match http*://www.icourse163.org/*
// @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);