added redirect medium to scribe userscript
This commit is contained in:
parent
7eff5c89c8
commit
5a93824b0f
|
@ -0,0 +1,16 @@
|
||||||
|
// ==UserScript==
|
||||||
|
// @name Redirect-Medium
|
||||||
|
// @namespace code.sitosis.com
|
||||||
|
// @version 1.0
|
||||||
|
// @description Rediret Medium
|
||||||
|
// @author rudism
|
||||||
|
// @match https://www.medium.com/*
|
||||||
|
// @match https://medium.com/*
|
||||||
|
// @grant none
|
||||||
|
// @run-at document-start
|
||||||
|
// ==/UserScript==
|
||||||
|
|
||||||
|
(function () {
|
||||||
|
'use strict';
|
||||||
|
top.location.hostname = "m.rdsm.ca";
|
||||||
|
})();
|
Loading…
Reference in New Issue