Simplified Spelling

Simplified Spelling

Try simplified spelling in your web browser!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simplified Spelling",
  "short_name": "Simplified Spelling",
  "icons": {
    "48": "ON.png",
    "128": "ON.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "description": "Try simplified spelling in your web browser!",
  "version": "1.0.1",
  "author": "Mark Petersen",
  "homepage_url": "https://github.com/mark-petersen/CutSpel/tree/simplifiedSpelling",
  "background": {
    "scripts": [
      "jquery-1.11.1.min.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*google.com*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "context-script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "ON.png",
      "38": "ON.png"
    }
  },
  "web_accessible_resources": [
    "jquery-1.11.1.min.map"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}