NG Spelling and Grammar Checker (Portuguese)

NG Spelling and Grammar Checker (Portuguese)

An automatic spelling and grammar checker for common errors in Portuguese.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.5.1",
  "default_locale": "pt_PT",
  "description": "__MSG_appDesc__",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "browser-polyfill.js",
        "check.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "icon128.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dic.pt.txt"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}