My Grammar Check

My Grammar Check

Check your texts for style and grammar problems everywhere on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Grammar Check",
  "short_name": "MyGrammarCheck",
  "version": "1.1.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16x16.png",
    "48": "images/icon-48x48.png",
    "60": "images/icon-60x60.png",
    "120": "images/icon-120x120.png"
  },
  "author": "My Grammer Check",
  "homepage_url": "https://www.mygrammarcheck.com",
  "offline_enabled": false,
  "browser_action": {
    "default_icon": "images/icon-48x48.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_tooltip__",
    "browser_style": false
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "bs/background.js",
      "share/tools.js",
      "bs/common.js",
      "share/markup.js"
    ]
  },
  "web_accessible_resources": [
    "images/*",
    "**/*.js",
    "vendors/*",
    "popup.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "vendors/jquery.min.js",
        "vendors/purify.js",
        "vendors/ally.js",
        "vendors/most.js",
        "vendors/featherlight/featherlight.js",
        "share/helpers.js",
        "share/tools.js",
        "share/markup.js",
        "cs/contentscript.js",
        "cs/textarea.js"
      ],
      "css": [
        "vendors/featherlight/featherlight.css",
        "css/lt-marker-style.css"
      ]
    },
    {
      "matches": [
        "https://www.mygrammarcheck.com/*"
      ],
      "js": [
        "cs/contentscript-lt.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      }
    }
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://www.mygrammarcheck.com/*"
    ]
  }
}