// ==UserScript== // @name 禁止摸鱼 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 上班期间,禁止摸鱼 // @author 7nc // @match *://www.gamersky.com/* // @match *://weibo.com/* // @match *://www.zhihu.com/* // @match *://twitter.com/* // @match *://www.bilibili.com/* // @grant GM_addStyle // @run-at document-body // @downloadURL none // ==/UserScript== (function() { 'use strict'; console.log("no play"); // 上班时间,下班时间 var WORK_ON=10; var WORK_OFF=19; var currentDate = new Date(); var hour = currentDate.getHours(); console.log(hour); // 下班期间,可以摸鱼 if(hourWORK_OFF){ return; } // 上班时间,禁止摸鱼 document.getElementsByTagName("body")[0].setAttribute("style","display:none"); setTimeout(function(){ alert("上班期间,禁止摸鱼") },100); })();