Typeright: Grammar & Spelling Checker

Typeright: Grammar & Spelling Checker

Check your texts for grammar, spelling, or punctuation mistakes. Polish up your writing with style and synonym suggestions!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "2.6",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "homepage_url": "https://typeright.com",
  "web_accessible_resources": [
    "src/images/*",
    "src/dist/*",
    "src/fonts/*",
    "src/popup/*"
  ],
  "icons": {
    "16": "icons/typeright_extension_icon_16x16.png",
    "32": "icons/typeright_extension_icon_32x32.png",
    "48": "icons/typeright_extension_icon_48x28.png",
    "128": "icons/typeright_extension_icon_128x128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/dist/backgroundScript.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+G",
        "mac": "Alt+Shift+G"
      }
    }
  },
  "permissions": [
    "https://*/*",
    "tabs",
    "storage",
    "cookies",
    "https://typeright.com/*",
    "https://accounts.typeright.com/*"
  ],
  "content_scripts": [
    {
      "exclude_matches": [
        "https://translate.google.com/*",
        "https://www.w3schools.com/*",
        "https://jsfiddle.net/*",
        "http://jsfiddle.net/*",
        "https://docs.google.com/*",
        "https://typeright.com/*",
        "https://typeright-website-staging.web.app/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/dist/lottie.min.js",
        "src/dist/browser-polyfill.js",
        "src/dist/webcomponents-bundle.js",
        "src/dist/contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/typeright_extension_icon_128x128.png",
    "default_popup": "src/popup/index.html",
    "default_title": "Typeright"
  }
}