2022-10-24 12:20:29 -05:00
|
|
|
// ==UserScript==
|
|
|
|
// @name Redirect-Medium
|
|
|
|
// @namespace code.sitosis.com
|
|
|
|
// @version 1.0
|
|
|
|
// @description Rediret Medium
|
|
|
|
// @author rudism
|
2022-10-24 22:29:41 -05:00
|
|
|
// @match https://*.medium.com/*
|
2022-10-24 12:20:29 -05:00
|
|
|
// @match https://medium.com/*
|
|
|
|
// @grant none
|
|
|
|
// @run-at document-start
|
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
(function () {
|
2022-12-20 07:49:11 -06:00
|
|
|
'use strict';
|
|
|
|
top.location.hostname = "m.rdsm.ca";
|
2022-10-24 12:20:29 -05:00
|
|
|
})();
|