Eye-Able® - Accessibility Assistant

Eye-Able® - Accessibility Assistant

Eye-Able® will let you see any website the way you need to.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "Eye-Able®",
  "version": "1.12.12",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "public/js/eyeAbleChrome.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "public/logo/eye-able-logo_rounded.png",
    "128": "public/logo/eye-able-logo.png"
  },
  "action": {
    "default_title": "Eye Able Plugin Einstellungen",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "externally_connectable": {
    "matches": [
      "*://*.eye-able.com/*",
      "http://localhost/*"
    ]
  }
}