Block sites
// ==UserScript==
// @name sites blocker
// @namespace http://tampermonkey.net/
// @version 3.0
// @description Block sites
// @author Thundercatcher
// @match http://example.com/
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Go to match and type the home url for the sites that you want to be blocked.
document.write('<h3 style="text-align: center;">Site Blocked by site blocker</h3>');
document.write('<h3 style="text-align: center;">This site has been blocked by your administer</h3>');
document.write('<h3 style="text-align: center;">( If you think this is a mistake you can contact to your administer to unblock this site</h3>');
document.write('<h3 style="text-align: center;">We do our best to ensure the internet is a safe and fun place for everyone. As an important reminder, we dont have access to your computer and we did not set this up.</h3>');
document.write('<h3 style="text-align: center;">All credits belong to <a href="https://greasyfork.org/en/users/918560-thundercatcher">Thundercatcher</a></h3>');
(document.body.style.backgroundColor = "#32CD32");
})();