Greasy Fork is available in English.

reddit-block

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;
  }
})();