Spell Checker for Edge

Spell Checker for Edge

Spell Checker extension for Edge. It's easy to use and fast. This extension supports 12 languages for spell check.

Merlin
Additional files are visible only to premium users

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"
}