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文件

下載Free Medium擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}