A11y Analytics Demo

A11y Analytics Demo

A demonstration of how accessibility analytics data capture could work on any webpage or website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "A11y Analytics Demo",
  "description": "A demonstration of how accessibility analytics data capture could work on any webpage or website.",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "version": "0.1.0",
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}