Redirect to Freedium

Automatically redirects medium articles to freedium

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Redirect to Freedium
// @namespace    https://github.com/ArjixWasTaken/my-userscripts
// @version      1.1
// @description  Automatically redirects medium articles to freedium
// @author       ArjixWasTaken
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=freedium.cfd
// @run-at       document-start
// @grant        none
// ==/UserScript==


const isMediumArticle = () => !!document.querySelector(`meta[property="al:android:url"][content^="medium://p/"]`)?.content;
new MutationObserver((mutations, observer) => {
    for (const mutation of mutations) {
        for (const node of mutation.addedNodes) {
            if (!node?.matches?.(`head > *`)) continue;
            if (isMediumArticle()) {
                window.location.href = `https://freedium.cfd/` + encodeURIComponent(window.location.href);
                observer.disconnect();
                return;
            }
        }
    }
}).observe(document, { subtree: true, childList: true });