Examine source code of Eye-Able® - Accessibility Assistant

Inspect and view changes in Eye-Able® - Accessibility Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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/*"
    ]
  }
}