redirect all reddit.com traffic -> /r/getoffreddit
// ==UserScript==
// @name reddit-block
// @namespace https://github.com/ThePhantomGamer/reddit-block
// @version 0.1
// @description redirect all reddit.com traffic -> /r/getoffreddit
// @author ThePhantomGamer
// @match http://*.reddit.com/*
// @match https://*.reddit.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
var get_off = 'https://www.reddit.com/r/getoffreddit/';
if(window.location != get_off){
window.location = get_off;
}
})();