Created
March 27, 2025 19:40
-
-
Save licensed/a7c34b14356eb143d038a1ed0d3bd39f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment