Examine source code of Spell Checker for Edge

Inspect and view changes in Spell Checker for Edge 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
{
  "background": {
    "page": "background.html"
  },
  "default_locale": "en",
  "description": "__MSG_ext_description__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/option.js"
      ],
      "matches": [
        "*://iblogbox.com/chrome/spellcheck/option/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "js/spellcheck.js"
      ],
      "matches": [
        "*://iblogbox.com/chrome/spellcheck/ext/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/icon19.png",
    "default_title": "__MSG_ext_name__"
  },
  "web_accessible_resources": [
    "options.html"
  ],
  "name": "__MSG_ext_name__",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "contextMenus",
    "*://*.googleapis.com/*",
    "*://languagetool.org/*",
    "*://*.languagetool.org/*",
    "*://*.pusan.ac.kr/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "18.0.0.0",
  "version": "0.9.4.3"
}