dyslexia simulator

dyslexia simulator

This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "dyslexia simulator",
  "version": "1.0",
  "description": "This extension simulates dyslexia. Just how if life gives you melons then you might be dyslexic.",
  "browser_action": {
    "default_icon": {
      "19": "assests/img/icon_19.png",
      "38": "assests/img/icon_38.png"
    },
    "default_title": "Dyslexia Simulator",
    "default_popup": "assests/html/options.html"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_globs": [
        "*google*"
      ],
      "js": [
        "assests/js/jquery-3.1.1.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "assests/html/options.html",
    "chrome_style": true
  }
}