Unlimited Medium

A browser extension that allows you to enjoy unlimited medium articles with just a click !

什么是Unlimited Medium?

Unlimited Medium是由issammani开发的Chrome扩展程序,该扩展的主要功能是“A browser extension that allows you to enjoy unlimited medium articles with just a click !”。

扩展截图

screenshot

下载Unlimited Medium扩展crx文件

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

扩展使用说明

                        NOTE: UNLIMITED MEDIUM HAS RECENTLY UNDERGONE A HUGE UPDATE. 
If you have encountred issues before, you should give it a second try now. Many problems were solved and the extension now supports self hosted blogs !

Are you tired of seeing this message "You have reached your monthly limit" ? Then this is the perfect extension for you.

It's as easy as 123 :
- Read
- Reach the monthly limit
- Click the icon
- Repeat

Ta-da 🎉 you just got 3 new articles !

For more checkout the project repo                    

扩展基本信息

名称 Unlimited Medium Unlimited Medium
ID medpfcealkejgpagldhgadbfaejjacaa
官方URL https://chromewebstore.google.com/detail/unlimited-medium/medpfcealkejgpagldhgadbfaejjacaa
简介 A browser extension that allows you to enjoy unlimited medium articles with just a click !
文件大小 41.22 KB
安装次数 20,000
当前版本 2.0.0
更新时间 2022-03-06
上架时间 2020-06-28
评分 2.68/5 共85次评分
开发者 issammani
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/issammani/unlimited-medium
帮助页面URL https://github.com/issammani/unlimited-medium
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unlimited Medium",
    "version": "2.0.0",
    "description": "A browser extension that allows you to enjoy unlimited medium articles with just a click !",
    "permissions": [
        "",
        "tabs",
        "cookies",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/unlimited-medium-16.png",
            "32": "assets\/unlimited-medium-32.png",
            "48": "assets\/unlimited-medium-48.png",
            "128": "assets\/unlimited-medium-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "assets\/unlimited-medium-16.png",
        "32": "assets\/unlimited-medium-32.png",
        "48": "assets\/unlimited-medium-48.png",
        "128": "assets\/unlimited-medium-128.png"
    },
    "web_accessible_resources": [],
    "manifest_version": 2
}