Accessible Web Helper

Accessible Web Helper

Discover and highlight accessibility violations on the web with the push of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Accessible Web Helper",
  "version": "1.19.4",
  "manifest_version": 3,
  "description": "Discover and highlight accessibility violations on the web with the push of a button.",
  "permissions": [
    "storage",
    "cookies",
    "contextMenus",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "js/background.min.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/awebChromeHelper.min.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/awebChromeHelper.min.css",
        "css/awebChromeHelperInjected.min.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "Accessible Web Helper"
  },
  "devtools_page": "html/devtoolsIndex.html",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}