Free Medium

Hide all premium content on medium

What is Free Medium?

Free Medium is a Chrome extension developed by Josh Batley, and its main feature is "Hide all premium content on medium".

Extension Screenshots

screenshot

Download Free Medium Extension CRX File

Download Free Medium extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Free Medium Free Medium
ID chnbggofbpmdlhmckdjebefnbbpiflcj
Official URL https://chrome.google.com/webstore/detail/free-medium/chnbggofbpmdlhmckdjebefnbbpiflcj
Description Hide all premium content on medium
File Size 4.91 MB
Installation Count 76
Current Version 1.1
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 3.00/5 Total 2 Ratings
Developer Josh Batley
Payment Type free
Extension Website https://github.com/jbatley/hidePremiumContent
Help Page URL https://github.com/jbatley/hidePremiumContent/issues
Supported Languages 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"
    }
}