Greasy Fork is available in English.

重庆药师网执业药师继续教育 切窗不停

避免切换到其他窗口时,视频播放停止

// ==UserScript==
// @name         重庆药师网执业药师继续教育 切窗不停
// @version      1.0
// @description  避免切换到其他窗口时,视频播放停止
// @match        http://www.cqlpa.com/*
// @grant        none
// @namespace www.31ho.com
// ==/UserScript==
 
window.onload = function () {
  setInterval(() => {
    try {
      var hre = location.href;
      if (hre.includes("http://www.cqlpa.com/zhiyeyaoshi") || hre.includes("http://www.cqlpa.com/index")) {
        window.onblur = function () {};
      }
    } catch (error) {}
  }, 1000);
};