Examine source code of CDA replacer

Inspect and view changes in CDA replacer 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
{
  "name": "CDA replacer",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "A Chromium extension to replace cda player with normal player.",
  "icons": {
    "128": "icons/cda_icon.png"
  },
  "permissions": [
    "tabs",
    "*://*.cda.pl//*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "replacer.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}