// ==UserScript== // @name Redirect-Medium // @namespace code.sitosis.com // @version 1.0 // @description Rediret Medium // @author rudism // @match https://*.medium.com/* // @match https://medium.com/* // @grant none // @run-at document-start // ==/UserScript== (function () { 'use strict'; top.location.hostname = "m.rdsm.ca"; })();