Examine source code of Medium Redirector

Inspect and view changes in Medium Redirector source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Medium Redirector",
  "description": "Redirects Medium URLs to Freedium",
  "version": "1.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "https://medium.com/*"
  ],
  "icons": {
    "48": "icons/first.svg"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://medium.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "medium-redirect@freedium.cfd"
    }
  }
}