🥇【学习公社刷课-自动静音播放】影刃平台

学习公社刷课

// ==UserScript==
// @name         🥇【学习公社刷课-自动静音播放】影刃平台
// @namespace    https://doc.yingren.xyz/
// @version      0.1
// @description  学习公社刷课
// @author       影刃
// @match        *.ttcdw.cn/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      GPL 3
// ==/UserScript==

(function () {
    'use strict';

    if(location.href.indexOf("/p/course/v/")!=-1) {
        setInterval(function(){
            autoPlay();
        },500)
    }

    // 自动静音播放
    function autoPlay() {
        var videos = document.querySelectorAll("video")
        if(videos && videos.length>0) {
            var video = videos[0]
            video.muted=true
            if(video.paused) {
                video.play()
            }
        }
    }

})();