// ==UserScript== // @name Medium2Freedium Redirect // @namespace http://tampermonkey.net/ // @version 2025-03-27 // @description Redirect Medium articles to Freedium // @author licensed // @match *://medium.com/* // @match *://*.medium.com/* // @grant none // ==/UserScript== (function() { 'use strict'; const currentUrl = window.location.href; const newUrl = `https://freedium.cfd/${currentUrl}`; window.location.replace(newUrl); })();