Open in IE

Open in IE

Send HTML links and webpages directly to the Internet Explorer browser without copy and paste!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Open in IE",
  "description": "Send HTML links and webpages directly to the Internet Explorer browser without copy and paste!",
  "version": "0.3.3",
  "manifest_version": 3,
  "minimum_chrome_version": "95",
  "homepage_url": "https://webextension.org/listing/open-in.html?from=ie",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "nativeMessaging"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "storage": {
    "managed_schema": "ie-schema.json"
  },
  "icons": {
    "16": "/data/icons/16.png",
    "32": "/data/icons/32.png",
    "48": "/data/icons/48.png",
    "64": "/data/icons/64.png",
    "128": "/data/icons/128.png",
    "256": "/data/icons/256.png",
    "512": "/data/icons/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/data/page/protected.js"
      ],
      "world": "ISOLATED",
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/data/page/exposed.js"
      ],
      "world": "MAIN",
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "action": {},
  "options_ui": {
    "page": "/data/options/index.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_action": {}
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}