Open Medium premium links with Freedium.cfd

Adds a button to open the current Medium article with freedium.cfd

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Open Medium premium links with Freedium.cfd
// @namespace    
// @version      1.0
// @description  Adds a button to open the current Medium article with freedium.cfd
// @match        *://medium.com/*
// @match        *://*.medium.com/*
// @grant        none
 // @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function addButton() {
        let paragraphs = document.querySelectorAll("p");
        let found = false;

        paragraphs.forEach(p => {
            if (p.textContent.includes("Member-only") && !found) {
                found = true;

                let btn = document.createElement('button');
                btn.textContent = "Open with freedium";
                btn.style.marginLeft = "10px";
                btn.style.padding = "5px";
                btn.style.backgroundColor = "#ff6600";
                btn.style.color = "#fff";
                btn.style.border = "none";
                btn.style.borderRadius = "5px";
                btn.style.cursor = "pointer";

                // Define the button action
                btn.addEventListener('click', () => {
                    let currentURL=encodeURIComponent(window.location.href);
                    window.open(`https://freedium.cfd/${currentURL}`, '_blank');
                });

                p.appendChild(btn);
            }
        });

        if (!found) {
            console.log("Target div not found.");
        }
    }

    // Run the function when the page loads
    window.addEventListener('load', addButton);
})();