Free Medium

Free Medium

Hide all premium content on medium

Additional files are visible only to premium users

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"
  }
}