Dyslexic Browser

Dyslexic Browser

Provides a suite of tools to help people overcome reading struggles caused by dyslexia.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dyslexic Browser",
  "description": "Provides a suite of tools to help people overcome reading struggles caused by dyslexia.",
  "version": "2.2.0",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnz+fhs3FanCiUjXeDlMaBxy/7MZobh61xIDD3tC9vbr3uVub5MPbpq9zZgj8q+ftTpRH9wHNW2UzdxaBmcf5qoWXIOhjraQTRQLK2RlO73fPGuJcRMxl2octod0kk/UkeaGMHP/eRwJ+QMcy8sW9c+7VTkbxEgv0cJqPFyJhyC1Z+gFs6TTX1Fw2VFjy/z2vHQ0fbYI89B9SYd8TuxJWbzIrCnWI4FXIiptwopa+XrXp7VMQGELlX2vExSPn/K7Wuif7jtlfWtmn1UNGHNfQbjxi6DzKwuMh2C0bZSWB2c9eVa4XsWTw4hxsHyhY9MEWnQlBh+qvyV2RXzQ9JQLw5QIDAQAB",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "dyslexic.css"
      ],
      "js": [
        "scripts/createElement.js",
        "scripts/highlighter.js",
        "scripts/stt.js",
        "scripts/dyslexic.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*.otf",
        "fonts/*.ttf",
        "img/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "fontSettings",
    "notifications"
  ],
  "externally_connectable": {
    "matches": [
      "*://db.foureyedjimmy.com/pdf-comp.html/*",
      "<all_urls>"
    ]
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/dbicon16.png"
  },
  "icons": {
    "16": "img/dbicon16.png",
    "48": "img/dbicon48.png",
    "128": "img/dbicon128.png"
  }
}