WAVE Accessibility Extension

WAVE Accessibility Extension

Evaluate web accessibility within the Firefox browser. When activated, the WAVE extension injects icons and indicators into your page to give feedback about accessibility and to facilitate manual evaluation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "WAVE Evaluation Tool",
  "short_name": "WAVE",
  "description": "Evaluate web accessibility within your browser.",
  "version": "3.2.4.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*",
    "<all_urls>",
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [],
  "web_accessible_resources": [
    "img/*",
    "styles/*",
    "chrome/*",
    "background.js",
    "inject.js",
    "sidebar.html",
    "wave.min.js",
    "sidebar.min.js"
  ],
  "browser_action": {
    "default_title": "WAVE",
    "default_icon": {
      "16": "/img/wave16bk.png",
      "32": "/img/wave32bk.png",
      "64": "/img/wave64bk.png"
    }
  },
  "commands": {
    "toggle-extension": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Send a 'toggle-extension' event to the extension"
    }
  },
  "icons": {
    "16": "/img/wave16.png",
    "32": "/img/wave32.png",
    "48": "/img/wave48.png",
    "64": "/img/wave64.png",
    "96": "/img/wave96.png",
    "128": "/img/wave128.png"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{9bbf6724-d709-492e-a313-bfed0415a224}"
    }
  }
}