Script ver Posts Medium
// ==UserScript==
// @name Script Medium
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Script ver Posts Medium
// @author BSH
// @match *://*.medium.com/*
// @grant GM_addStyle
// @grant GM_xmlhttpRequest
// @run-at document-end
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var currentUrl = window.location.href;
var prefix = 'https://freedium.cfd/';
var newUrl = prefix + currentUrl;
// Redirecionar na mesma aba
if (window.location.href !== newUrl) {
window.location.replace(newUrl);
}
})();