Read Medium for free

Read Medium stories without leaving the page if you reached to free reading limit.

Read Medium for free란 무엇입니까?

Read Medium for free은(는) Mesut Tasci에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read Medium stories without leaving the page if you reached to free reading limit."입니다.

확장 프로그램 스크린샷

screenshot

Read Medium for free 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NOT WORKING ANYMORE. I AM GOING TO IMPLEMENT ANOTHER SOLUTION

------------------------

This extension only fetches Medium article without cookies and replace page content, like the opening article in incognito mode.

The extension is run only when you have reached to free reading limit and does not make any request outside of Medium.

Extension source code:
https://github.com/mesuutt/read-medium-extension                    

확장 프로그램 기본 정보

이름 Read Medium for free Read Medium for free
ID feckflmdfioohghkgojnilnlaelfgffl
공식 URL https://chrome.google.com/webstore/detail/read-medium-for-free/feckflmdfioohghkgojnilnlaelfgffl
설명 Read Medium stories without leaving the page if you reached to free reading limit.
파일 크기 30.53 KB
설치 횟수 9,081
현재 버전 2.4
최근 업데이트 2021-09-08
출시 날짜 2020-09-20
평점 3.33/5 총 36 개의 평점
개발자 Mesut Tasci
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mesuutt/read-medium-extension
도움말 페이지 URL https://github.com/mesuutt/read-medium-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Medium for free",
    "description": "Read Medium stories without leaving the page if you reached to free reading limit.",
    "manifest_version": 2,
    "version": "2.4",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.medium.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    }
}