IE View WE Developer Edition

IE View WE Developer Edition

Provides ability to open pages and links by Internet Explorer (Cloned IE View based on WebExtensions-based)

Merlin
Additional files are visible only to premium users

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"
}