Unlimited Medium

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

Unlimited Medium là gì?

Unlimited Medium là một tiện ích mở rộng Chrome được phát triển bởi issammani, và tính năng chính của nó là "A browser extension that allows you to enjoy unlimited medium articles with just a click !".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Unlimited Medium

Tải xuống các tệp mở rộng Unlimited Medium dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unlimited Medium Unlimited Medium
ID medpfcealkejgpagldhgadbfaejjacaa
URL Chính Thức https://chromewebstore.google.com/detail/unlimited-medium/medpfcealkejgpagldhgadbfaejjacaa
Mô tả A browser extension that allows you to enjoy unlimited medium articles with just a click !
Kích Thước Tệp 41.22 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-03-06
Ngày Phát Hành 2020-06-28
Đánh Giá 2.68/5 Tổng số 85 Đánh Giá
Nhà Phát Triển issammani
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/issammani/unlimited-medium
URL Trang Trợ Giúp https://github.com/issammani/unlimited-medium
Ngôn Ngữ Được Hỗ Trợ 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
}