Examine source code of MV3ValidSample

Inspect and view changes in MV3ValidSample 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": "MV3ValidSample",
  "version": "1.2.3.6",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; child-src https://www.contoso.com https://azurewebsites.contoso.com"
  },
  "host_permissions": [
    "https://www.contoso.com/*"
  ],
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "img/icon16.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/contoso.svg"
      ],
      "matches": [
        "*://www.contoso.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}