Examine source code of IE View WE Developer Edition

Inspect and view changes in IE View WE Developer Edition 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": "__MSG_extensionName__",
  "version": "2.0.1",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "contextMenus",
    "nativeMessaging",
    "storage",
    "alarms",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "icons": {
    "128": "misc/128x128.png"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "default_locale": "en",
  "storage": {
    "managed_schema": "managed_schema.json"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}