Examine source code of Eye-Able® - Visual Aid

Inspect and view changes in Eye-Able® - Visual Aid 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
{
  "name": "__MSG_appName__",
  "short_name": "Eye-Able®",
  "version": "1.9.27",
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "public/js/eyeAbleChrome.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "public/images/*.png",
    "public/images/*.jpg",
    "public/images/*.svg",
    "public/font/*",
    "public/css/*.css",
    "public/custom/*"
  ],
  "icons": {
    "48": "public/logo/eye-able-logo_rounded.png",
    "128": "public/logo/eye-able-logo.png"
  },
  "browser_action": {
    "default_title": "Eye Able Plugin Einstellungen",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "support@eye-able.de",
      "strict_min_version": "57.0"
    }
  }
}