Inspect and view changes in AccessAudit 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
{
"manifest_version": 2,
"name": "AccessAudit",
"version": "1.0",
"description": "Accessibility Checker: Scan pages for WCAG compliance, get detailed reports, and use manual testing tools",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"activeTab",
"storage",
"<all_urls>"
],
"browser_action": {
"default_icon": "icons/icon-48.png",
"default_title": "AccessAudit",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{f47f1161-4009-4655-ac0b-747438b448d7}"
}
}
}