Inglourious Grammer

Inglourious Grammer

Randomly introduces grammar and spelling errors to a page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Inglourious Grammer",
  "description": "Randomly introduces grammar and spelling errors to a page.",
  "version": "1.0.5",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ],
      "run_at": "document_end"
    }
  ]
}