Reddit to Teddit

Redirect reddit to teddit

  1. // ==UserScript==
  2. // @name Reddit to Teddit
  3. // @namespace fke9fgjew89gjwe89
  4. // @version 0.2
  5. // @description Redirect reddit to teddit
  6. // @author anon
  7. // @match https://www.reddit.com/*
  8. // @match https://reddit.com/*
  9. // @grant none
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15. top.location.hostname = "teddit.net";
  16. })();