Typoly

Typoly

The extension go through your webpage and replace words in any text with ones with typo. Powered by Corpus Typo Dataset.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Typoly",
  "description": "The extension go through your webpage and replace words in any text with ones with typo. Powered by Corpus Typo Dataset.",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "typo.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}