Examine source code of EdgeTeam-MA01

Inspect and view changes in EdgeTeam-MA01 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": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.16.0",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "proxy",
    "storage",
    "webRequest",
    "webRequestAuthProvider",
    "alarms",
    "notifications",
    "identity",
    "tabs",
    "activeTab",
    "webNavigation",
    "webNavigation",
    "contextMenus"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "wsam/yew-ping-dns-8908a91748d82120.js",
        "wsam/yew-ping-dns-8908a91748d82120_bg.wasm",
        "profile/config.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extensionName__"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "icons": {
    "128": "/profile/png/ET_icon_custom_logo_300x300.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}