Free Medium

Hide all premium content on medium

Free Medium란 무엇입니까?

Free Medium은(는) Josh Batley에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide all premium content on medium"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Toggle on and off Medium's premium content, from any main page on Medium.

Only works on medium.com, no support for 3rd party blog.                    

확장 프로그램 기본 정보

이름 Free Medium Free Medium
ID chnbggofbpmdlhmckdjebefnbbpiflcj
공식 URL https://chrome.google.com/webstore/detail/free-medium/chnbggofbpmdlhmckdjebefnbbpiflcj
설명 Hide all premium content on medium
파일 크기 4.91 MB
설치 횟수 76
현재 버전 1.1
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 3.00/5 총 2 개의 평점
개발자 Josh Batley
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jbatley/hidePremiumContent
도움말 페이지 URL https://github.com/jbatley/hidePremiumContent/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Free Medium",
    "version": "1.1",
    "description": "Hide all premium content on medium",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "lib\/main.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon_grey_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "webRequest",
        "*:\/\/*.medium.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.medium.com\/*"
            ],
            "js": [
                "lib\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    }
}