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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}