skynet/userscripts/redirect-medium.js

17 lines
390 B
JavaScript
Raw Normal View History

// ==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/*
// @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";
})();