Legacy Browser Support for IE Mode in Edge

Legacy Browser Support for IE Mode in Edge

Deploy Microsoft Edge for your organization, but open some sites in an alternative browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extension_name__",
  "version": "8.0.2",
  "icons": {
    "16": "icon.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "29",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/port.js",
      "js/extension_logic.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "nativeMessaging",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "action.html",
    "loading.html"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "incognito": "split",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}