WProofreader Secure Grammar Checker

WProofreader Secure Grammar Checker

Сorrect and improve your messages, docs, and emails with WProofreader secure writing assistant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WProofreader Secure Grammar Checker",
  "version": "2.3.3",
  "default_locale": "en",
  "description": "__MSG_description__",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage",
    "cookies",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "WProofreader"
  },
  "options_ui": {
    "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": {
    "service_worker": "background/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*/*.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}