山东省执业药师继续教育

执业药师继续教育--屏蔽视频页弹窗,考试自动显示答案

// ==UserScript==
// @name         山东省执业药师继续教育
// @namespace    http://www.sdlpa.org.cn
// @version      0.1
// @description  执业药师继续教育--屏蔽视频页弹窗,考试自动显示答案
// @author       星星课
// @match        http://www.sdlpa.org.cn/Learning/VideoH52/*?cId=*&wId=*
// @match        http://www.sdlpa.org.cn/Exam/SingleExam/*?cid=*
// @icon         	http://www.sdlpa.org.cn/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        if(typeof  player!="undefined"){
            player.volume=0;
            if(player.currentTime<player.duration)if(player.paused==true)player.play();
            $('#bulletTime').val(9999999999);}
        var answer_tag=document.getElementById("answerDiv");
        if(answer_tag)answer_tag.setAttribute('style', '');

    },3e3);


})();