Discover and highlight accessibility violations on the web with the push of a button.
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": "Accessible Web Helper",
"version": "1.24.3",
"manifest_version": 3,
"description": "Discover and highlight accessibility violations on the web with the push of a button.",
"permissions": [
"storage",
"cookies",
"contextMenus",
"webNavigation"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "js/background.min.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"js/awebChromeHelper.min.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"css/awebChromeHelper.min.css",
"css/awebChromeHelperInjected.min.css"
],
"matches": [
"*://*/*"
]
}
],
"action": {
"default_popup": "html/popup.html",
"default_title": "Accessible Web Helper"
},
"devtools_page": "html/devtoolsIndex.html",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}