Freedium Redirect for Medium

Automatically open Medium articles on freedium.cfd.

当前为 2025-11-07 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Freedium Redirect for Medium
// @namespace    https://medium.com/
// @version      1.0
// @description  Automatically open Medium articles on freedium.cfd.
// @author       Nick Bakaka
// @match        https://*.medium.com/*
// @grant        none
// @license      CC
// ==/UserScript==

(function () {
    'use strict';

    // ---- Configuration ----
    const REDIRECT_PREFIX = "https://freedium.cfd/";
    // ------------------------

    /**
     * Helper: Build the new URL.
     * We encode the original Medium URL so it becomes a safe path segment on freedium.cfd.
     */
    function buildRedirectUrl() {
        const originalUrl = window.location.href;
        return REDIRECT_PREFIX + encodeURIComponent(originalUrl);
    }

    // Only redirect if we are NOT already on freedium.cfd
    if (!window.location.hostname.startsWith('freedium.cfd')) {
        const newUrl = buildRedirectUrl();
        // Use replace() so the original URL is not kept in history.
        window.location.replace(newUrl);
    }
})();