Redium

Redium

Automatically unblock medium articles through proxies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Redium",
  "version": "2.0",
  "description": "Automatically unblock medium articles through proxies.",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "action": {},
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+R"
      }
    }
  },
  "host_permissions": [
    "*://*.medium.com/*"
  ],
  "permissions": [
    "activeTab",
    "contentSettings",
    "contextMenus",
    "management",
    "storage"
  ],
  "background": {
    "service_worker": "dist/worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://webcache.googleusercontent.com/*"
      ],
      "js": [
        "dist/webcache.js"
      ]
    }
  ]
}