采云学院

自动学习,自动续播,静音,倍速播放

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         采云学院
// @namespace    https://e-learning.zcygov.cn/
// @version      1.2
// @description  自动学习,自动续播,静音,倍速播放
// @author       happyghw
// @match        *://e-learning.zcygov.cn/study/platform?id=*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function(){
        setInterval(function () {
            for (var i = 0; i < document.getElementsByTagName('video').length; i++) {
                var current_video = document.getElementsByTagName('video')[i]

                //允许视频后台自动播放
                document.addEventListener("visibilitychange", function() {
                    if (document.hidden) {
                        for (var i = 0; i < document.getElementsByTagName('video').length; i++) {
                            var videos_hidden = document.getElementsByTagName('video')[i]
                            // 点击“播放”
                            videos_hidden.play();
                        }
                    }});

                // 静音
                current_video.volume = 0

                // 点击“播放”
                current_video.play();

                // 设置3倍速
                current_video.playbackRate = 3
            }
        },2000)

        // 设置每3分钟刷新一次页面,防止页面不续播
        setTimeout(function() {
            window.location.reload();
        }, 180000);

    }})();