WProofreader Secure Grammar Checker

WProofreader Secure Grammar Checker

Correct and improve your messages, docs, and emails with WProofreader. Available for individual users and teams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "WProofreader Secure Grammar Checker",
  "version": "2.3.3",
  "default_locale": "en",
  "description": "__MSG_description__",
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "cookies"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "WProofreader"
  },
  "options_ui": {
    "chrome_style": false,
    "open_in_tab": true,
    "page": "options/options.html"
  },
  "icons": {
    "16": "images/extension/wsc-icon-16.png",
    "32": "images/extension/wsc-icon-32.png",
    "48": "images/extension/wsc-icon-48.png",
    "64": "images/extension/wsc-icon-64.png",
    "128": "images/extension/wsc-icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "googledocs/googledocs.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "*/*.*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{b9f006c3-ee86-4749-8e54-fe37fccdf690}"
    }
  }
}