专业技术人员继续教育网站不停止插件
// ==UserScript==
// @name 专业技术人员继续教育网站不停止插件
// @namespace https://nmg.chinahrt.com and so on
// @version 0.3
// @description 不停止插件(不保证所有网址,请自行尝试)
// @author jeaven
// @match https://*/*
// @match http://*/*
// @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')};
})();