Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/f323456851e84aaa83a98948c34c5362.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @name Redditblock // @description Redirects people back to what they were doing before they decided to browse Reddit // @include https://*.reddit.com // @include https://*.reddit.com/* // @include https://www.youtube.com/watch?v=* // @run-at document-start // @version 0.0.1.20151121120312 // @namespace https://greasyfork.org/users/12417 // @downloadURL none // ==/UserScript== // This whole code is meant to block websites you apply to this script to from 9 AM to 6 PM, with 1 check per minute. // For any further inquiries, please tell me at scratch.mit.edu/users/iamunknown2 or reddit/u/iamunknowntwo var date1 = new Date(); var hours = date1.getHours(); if (hours >= 8 && hours <= 17) // If hours are 8 AM to 7 PM (inclusive) { window.history.back(); }