Redium

Automatically unblock medium articles through proxies.

什么是Redium?

Redium是由https://anissan.com开发的Chrome扩展程序,该扩展的主要功能是“Automatically unblock medium articles through proxies.”。

扩展截图

screenshot

下载Redium扩展crx文件

下载Redium扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        However, it auto-redirects only if you open the article in a new tab, or manually click the extension icon / Alt + R.

It currently supports proxies like:
1️⃣ Google Web Cache
2️⃣ 12ft.io
3️⃣ Scribe
4️⃣ LibMedium

ℹ️ Google Web Cache and 12ft can unlock articles on websites other than medium.com. But they may or may not work 100% of the time.

This extension doesn't collect any data. Checkout the "Website" link for source code and changelog on GitHub.                    

扩展基本信息

名称 Redium Redium
ID aapiedkipcbeplicbbicchmdmpinhjdl
官方URL https://chromewebstore.google.com/detail/redium/aapiedkipcbeplicbbicchmdmpinhjdl
简介 Automatically unblock medium articles through proxies.
文件大小 11.55 KB
安装次数 4,388
当前版本 2.0
更新时间 2023-08-24
上架时间 2023-05-11
评分 5.00/5 共37次评分
开发者 https://anissan.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ni554n/redium
帮助页面URL https://github.com/ni554n/redium/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Redium",
    "version": "2.0",
    "description": "Automatically unblock medium articles through proxies.",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "action": [],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    },
    "host_permissions": [
        "*:\/\/*.medium.com\/*"
    ],
    "permissions": [
        "activeTab",
        "contentSettings",
        "contextMenus",
        "management",
        "storage"
    ],
    "background": {
        "service_worker": "dist\/worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/webcache.googleusercontent.com\/*"
            ],
            "js": [
                "dist\/webcache.js"
            ]
        }
    ]
}