Reddit to Teddit

Redirect reddit to teddit

// ==UserScript==
// @name         Reddit to Teddit
// @namespace    fke9fgjew89gjwe89
// @version      0.2
// @description  Redirect reddit to teddit
// @author       anon
// @match        https://www.reddit.com/*
// @match        https://reddit.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function () {
	'use strict';
	top.location.hostname = "teddit.net";
})();