Examine source code of Accessibility Tool

Inspect and view changes in Accessibility Tool 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",
  "manifest_version": 3,
  "name": "Accessibility Tool",
  "version": "1.1",
  "description": "A accessibility tool to improve web accessibility.",
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "Images/icon16.png",
    "48": "Images/icon48.png",
    "128": "Images/icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Images/*.png",
        "Images/tool-icon.png",
        "Images/screen-reader.png",
        "Images/contrast.png",
        "Images/text-size.png",
        "Images/highlight.png",
        "Images/reset.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}