Skip to content

Instantly share code, notes, and snippets.

@licensed
Created March 27, 2025 19:40
Show Gist options
  • Save licensed/a7c34b14356eb143d038a1ed0d3bd39f to your computer and use it in GitHub Desktop.
Save licensed/a7c34b14356eb143d038a1ed0d3bd39f to your computer and use it in GitHub Desktop.
// ==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