Examine source code of Accessibility Insights for Web

Inspect and view changes in Accessibility Insights for Web 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Accessibility Insights for Web",
  "author": "Microsoft Corporation",
  "description": "Accessibility Insights for Web helps developers quickly find and fix accessibility issues.",
  "version": "2.46.0",
  "icons": {
    "16": "icons/brand/blue/brand-blue-16px.png",
    "48": "icons/brand/blue/brand-blue-48px.png",
    "128": "icons/brand/blue/brand-blue-128px.png"
  },
  "devtools_page": "Devtools/devtools.html",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "20": "icons/brand/blue/brand-blue-16px.png",
      "40": "icons/brand/blue/brand-blue-48px.png"
    }
  },
  "manifest_version": 3,
  "permissions": [
    "notifications",
    "scripting",
    "storage",
    "tabs",
    "webNavigation",
    "activeTab"
  ],
  "background": {
    "service_worker": "bundle/serviceWorker.bundle.js"
  },
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "insights.html",
        "assessments/*",
        "injected/*",
        "background/*",
        "common/*",
        "DetailsView/*",
        "bundle/*",
        "NOTICE.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+Shift+K",
        "mac": "Alt+Shift+K",
        "chromeos": "Alt+Shift+K",
        "linux": "Alt+Shift+K"
      },
      "description": "Activate the extension"
    },
    "01_toggle-issues": {
      "suggested_key": {
        "windows": "Alt+Shift+1",
        "mac": "Alt+Shift+1",
        "chromeos": "Alt+Shift+1",
        "linux": "Alt+Shift+1"
      },
      "description": "Toggle Automated checks"
    },
    "02_toggle-landmarks": {
      "suggested_key": {
        "windows": "Alt+Shift+2",
        "mac": "Alt+Shift+2",
        "chromeos": "Alt+Shift+2",
        "linux": "Alt+Shift+2"
      },
      "description": "Toggle Landmarks"
    },
    "03_toggle-headings": {
      "suggested_key": {
        "windows": "Alt+Shift+3",
        "mac": "Alt+Shift+3",
        "chromeos": "Alt+Shift+3",
        "linux": "Alt+Shift+3"
      },
      "description": "Toggle Headings"
    },
    "04_toggle-tabStops": {
      "description": "Toggle Tab stops"
    },
    "05_toggle-color": {
      "description": "Toggle Color"
    },
    "06_toggle-needsReview": {
      "description": "Toggle Needs review"
    },
    "07_toggle-accessibleNames": {
      "description": "Toggle Accessible names"
    }
  }
}