专业技术人员继续教育网站不停止插件

不停止插件(不保证所有网址,请自行尝试)

// ==UserScript==
// @name         专业技术人员继续教育网站不停止插件
// @namespace    http://web.chinahrt.com and so on
// @version      0.2
// @description  不停止插件(不保证所有网址,请自行尝试)
// @author       jeaven
// @match        http://*/*
// @match        https://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chinahrt.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    window.onfocus = function(){console.log('on focus')};
    window.onblur = function(){console.log('on blur')};
})();