DysHelper

DysHelper

DysHelper automatically modifies content of web pages in a way to make it more comfortable to read 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": "DysHelper",
  "version": "0.3.0",
  "description": "DysHelper automatically modifies content of web pages in a way to make it more comfortable to read for people with dyslexia.",
  "icons": {
    "128": "logo128.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "name": "Configure DysHelper",
    "icons": {
      "48": "logo48.png",
      "128": "logo128.png"
    },
    "default_icon": "logo128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}