Grammar Checker

Grammar Checker

Make your English communication flawless by rectifying grammar, spelling, and syntax mistakes existing in any kind of text with GrammarChecker.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Grammar Checker",
  "description": "Free Grammarchecker.com extension",
  "version": "1.0.1",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "62": "mob_logo.png"
  },
  "permissions": [
    "*://*.en.wiktionary.org/*",
    "storage",
    "identity",
    "webRequest",
    "<all_urls>",
    "tabs",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "jquery.min.js",
        "content.js",
        "popup.js",
        "wiktionary-parser.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d1c97135-d720-44e1-9a3c-5e163026a098}"
    }
  }
}