IE Tab MV3 Beta

IE Tab MV3 Beta

Display web pages using IE within Chrome. Use Java, Silverlight, ActiveX, Sharepoint, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IE Tab MV3 Beta",
  "short_name": "IE Tab MV3 Beta",
  "manifest_version": 3,
  "version": "15.12.3.1",
  "description": "__MSG_extDescription__",
  "options_page": "options.html",
  "default_locale": "en_US",
  "storage": {
    "managed_schema": "managed_schema.json"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.ietab.net/*"
      ],
      "js": [
        "js/extapi_cs.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/ietabapi_cs.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/chromeie16.png",
    "32": "images/chromeie32.png",
    "48": "images/chromeie48.png",
    "128": "images/chromeie128.png"
  },
  "action": {
    "default_icon": "images/chromeba.png",
    "default_title": "__MSG_extBrowserActionTooltip__"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/extapi_wp.js",
        "js/ietabapi_wp.js",
        "redir.htm"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.ietab.net/*"
    ],
    "ids": [
      "*"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "nativeMessaging",
    "cookies",
    "declarativeNetRequest"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}