Examine source code of Media Helper

Inspect and view changes in Media Helper 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Media Helper",
  "description": "Add extra powers⚡ to media!",
  "version": "1.0.4",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "downloads",
    "declarativeNetRequest",
    "storage",
    "scripting",
    "management"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "128": "icons/icon128.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  }
}