Examine source code of Open IE

Inspect and view changes in Open IE 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open IE",
  "description": "Lets you load pages in IE with a single right-click context menu",
  "version": "2.3",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "web_accessible_resources": [
    "setup.exe"
  ],
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "contextMenus",
    "nativeMessaging"
  ]
}