Greasy Fork

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

不停止插件

目前为 2022-07-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         专业技术人员继续教育网站不停止插件
// @namespace    http://web.chinahrt.com and so on
// @version      0.1
// @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';

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