OpenWAX

OpenWAX

OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OpenWAX",
  "version": "2.0.10",
  "description": "OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem.",
  "action": {
    "default_icon": "logo_19.png",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "icons": {
    "16": "logo_16.png",
    "19": "logo_19.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "achecker.css"
      ],
      "js": [
        "lib/Section.js",
        "lib/Sections.js",
        "i18n.js",
        "achecker.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}