Redirect all URLs hosted on medium.com to scribe.rip
// ==UserScript==
// @name Redirect Medium URLs to scribe.rip
// @namespace https://davidblue.wtf
// @version 0.1
// @description Redirect all URLs hosted on medium.com to scribe.rip
// @author David Blue
// @match *://medium.com/*
// @license The Unlicense
// ==/UserScript==
(function() {
"use strict";
window.location.replace(window.location.href.replace("medium.com", "scribe.rip"));
})();