Clarify for Dyslexia

Clarify for Dyslexia

A simple but powerful tool to improve website readability for people with dyslexia

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clarify for Dyslexia",
  "version": "1.1",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "description": "A simple but powerful tool to improve website readability for people with dyslexia",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "jquery-2.2.4.min.js",
        "cladys.js"
      ],
      "css": [
        "cladys.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/icon_off.png",
    "default_title": "Clarify: Click to Enable"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "eulexia-webfont.woff"
  ]
}