Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/5b0c132bf08a6e066085e6a69ec5c6c3.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Mediablock
// @description Closes social media from 7 AM to 5 PM inclusive on weekdays, 6 AM to 10 AM Saturdays, and completely free on Sundays!
// @include https://*.reddit.com
// @include https://*.reddit.com/*
// @include https://*.facebook.com
// @include https://*.facebook.com/*
// @include https://*.twitter.com
// @include https://*.twitter.com/*
// @include https://scratch.mit.edu
// @include https://scratch.mit.edu/*
// @include https://*.newgrounds.com
// @include https://*.newgrounds.com/*
// @include https://*.myspace.com
// @include https://*.myspace.com/*
// @run-at document-start
// @version 0.0.1.20151123013635
// @namespace https://greasyfork.org/users/12417
// @downloadURL none
// ==/UserScript==
// For any further inquiries, please contact me at scratch.mit.edu/users/iamunknown2 or reddit/u/iamunknowntwo
function block() // Function will block the website.
{
var current = window.location.href;
window.history.close(); // Attempt to close tab
if (window.location.href == current) // If it's still there
{
window.history.back(); // Go back
if (window.location.href == current) // If it's still there
{
window.location.href = "about://newtab"; // Go to a new tab
}
}
}
var date1 = new Date();
var hours = date1.getHours(); // Hours
var day = date1.getDay(); // Day of the week
if (day === 6) // If it's a Saturday
{
block();
}
else if (hours >= 6 && hours <= 16 && day !== 0) // If hours are 7 AM to 5 PM (inclusive) and not a Sunday
{
block();
}