Comprehensive accessibility audit tool based on WCAG guidelines
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "AccessibilityCompass",
"version": "1.0",
"description": "Comprehensive accessibility audit tool based on WCAG guidelines",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "accessibilitycompass@example.com"
}
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}