Word Welter

Word Welter

Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Word Welter",
  "version": "1.1.3",
  "browser_action": {
    "default_icon": {
      "19": "WordWelterIcon19x19_Off.png"
    },
    "default_title": "Word Welter Off"
  },
  "description": "Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last.",
  "icons": {
    "16": "WordWelterIcon16x16.png",
    "48": "WordWelterIcon48x48.png",
    "128": "WordWelterIcon128x128.png"
  },
  "permissions": [
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "jquery-1.10.2.min.map"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-1.10.2.min.js"
      ],
      "all_frames": true
    }
  ]
}