Medium For Free

Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains

Medium For Free란 무엇입니까?

Medium For Free은(는) Faruk Cankaya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Medium For Free 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to access Medium articles for free on both normal browsers or Incognito browsers by clearing the cache that only belongs to Medium. Also, all Medium-backed publications like TowardsDataScience, The Mission, Personal Growth, etc. are included to free access.

There are many articles about how to access Medium articles for free. The most common way is to open the articles on the Incognito browser. However, it is a very cumbersome way to do it. If you keep the Incognito browser open, you cannot read premium articles more than 3. You need to restart the Incognito browser or clear the cache on it manually for every 3 articles that you want to read. This extension mainly automates this process.

Features:
- It works on both normal browsers and Incognito browsers.
- You can decide on which browser it should run. Since it clears the cache on medium, you cannot keep your session open. In this case, you can run it only on Incognito.
- It is working automatically. Do not need to click some buttons manually. Set your rules and leave it to run behind the scene.
- You can disable the extension when you do not need it without uninstalling it.

CHANGELOG:
**0.0.4**
- Mixed(Normal/Incognito browsing) mode is added. You can read paid medium articles for free in a new Incognito tab using 'Command+Shift+2' (for Mac users) or 'Ctrl+Shift+2' (for Windows users) shortcuts easily without loosing your session in the normal browser.
- Documentation/working is improved. A guide is added for enabling incognito mode and using the extension with 100% benefits.                    

확장 프로그램 기본 정보

이름 Medium For Free Medium For Free
ID blplogjpejodjjclnpgbijbhoacbelfj
공식 URL https://chrome.google.com/webstore/detail/medium-for-free/blplogjpejodjjclnpgbijbhoacbelfj
설명 Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains
파일 크기 51.28 KB
설치 횟수 448
현재 버전 0.0.3
최근 업데이트 2022-01-24
출시 날짜 2021-11-11
평점 4.43/5 총 7 개의 평점
개발자 Faruk Cankaya
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium For Free",
    "description": "Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains",
    "manifest_version": 3,
    "version": "0.0.3",
    "permissions": [
        "cookies",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/www.paypalobjects.com\/donate\/sdk\/donate-sdk.js;"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/images\/icon_16.png",
        "32": "\/images\/icon_32.png",
        "48": "\/images\/icon_48.png",
        "128": "\/images\/icon_128.png"
    }
}