优课防止失去焦点

优课支持失去焦点继续播放,播放完成之后弹窗提示

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        优课防止失去焦点
// @qq&wx   1186632641
// @include     *http://www.uooc.net.cn/*
// @version     3.0
// @description 优课支持失去焦点继续播放,播放完成之后弹窗提示
// @grant       none
// @namespace 1186632641
// ==/UserScript==
$(document).ready(function () {
    setInterval(function () {
        var videoButton = document.getElementsByClassName("vjs-big-play-button animated fadeIn")[0];
        if(videoButton !== undefined)
        {
            var video = document.getElementById("player_html5_api");
            video.onended = function() {alert("视频已播放完成");};
            video.muted = true;
            videoButton.click();
        }
    },1000);
});