dictionary configurer

dictionary configurer

The extension can enable spell checking for all fields on a page or on all pages of all sites by default. Also it lets you choose which spell checking dictionaries use by default. Useful for multi language dictionary to set them active by default.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "spellcheck dictionary configurer",
  "description": "spellcheck dictionary configurer",
  "short_name": "spellcheck dictionary configurer",
  "author": "serj-kzv",
  "version": "3",
  "homepage_url": "https://github.com/serj-kzv/spellcheck-dictionary-configurer",
  "browser_action": {
    "browser_style": true,
    "default_icon": "/resource/icon.png",
    "default_title": "options of spellcheck dictionary configurer"
  },
  "content_scripts": [
    {
      "js": [
        "/content/main.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "/background/main.js"
    ]
  },
  "options_ui": {
    "page": "/opt-app/index.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}