2022-10-07 13:16:16 -05:00
|
|
|
// ==UserScript==
|
|
|
|
// @name Redirect-Reddit
|
|
|
|
// @namespace code.sitosis.com
|
|
|
|
// @version 1.0
|
|
|
|
// @description Rediret Reddit
|
|
|
|
// @author rudism
|
|
|
|
// @match https://www.reddit.com/*
|
2022-10-07 23:04:34 -05:00
|
|
|
// @match https://old.reddit.com/*
|
2022-10-07 13:16:16 -05:00
|
|
|
// @match https://reddit.com/*
|
|
|
|
// @grant none
|
|
|
|
// @run-at document-start
|
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
(function () {
|
2022-12-20 07:49:11 -06:00
|
|
|
'use strict';
|
|
|
|
top.location.hostname = "r.rdsm.ca";
|
2022-10-07 13:16:16 -05:00
|
|
|
})();
|