OpenDyslexic for Chrome

OpenDyslexic for Chrome

Format pages using the OpenDyslexic font and low contrast help

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "40.1.0",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "homepage_url": "https://opendyslexic.org",
  "icons": {
    "16": "assets/images/icons/icon-16.png",
    "48": "assets/images/icons/icon-48.png",
    "128": "assets/images/icons/icon-128.png"
  },
  "action": {
    "default_icon": "assets/images/icons/icon-128.png",
    "default_popup": "index.html"
  },
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "exclude_globs": [
        "*://docs.google.com/*"
      ]
    }
  ],
  "offline_enabled": true,
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "assets/fonts/opendyslexic/bold.otf",
        "assets/fonts/opendyslexic/bold-italic.otf",
        "assets/fonts/opendyslexic/italic.otf",
        "assets/fonts/opendyslexic/regular.otf",
        "assets/styles/core/opendyslexic.css"
      ]
    }
  ]
}