Medium For Free

Medium For Free

Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Medium For Free",
  "description": "Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains",
  "manifest_version": 3,
  "version": "0.0.3",
  "permissions": [
    "cookies",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://www.paypalobjects.com/donate/sdk/donate-sdk.js;"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/images/icon_16.png",
    "32": "/images/icon_32.png",
    "48": "/images/icon_48.png",
    "128": "/images/icon_128.png"
  }
}