Redditblock

Redirects people back to what they were doing before they decided to browse Reddit

Από την 21/11/2015. Δείτε την τελευταία έκδοση.

// ==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/*
// @run-at document-start
// @version 0.0.1.20151121120405
// @namespace https://greasyforks.org/users/12417
// ==/UserScript==

// This whole code is meant to block Reddit from 9 AM to 6 PM

// 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();
}
长期地址
遇到问题?请前往 GitHub 提 Issues。