Inspect and view changes in Website Accessibility Checker 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": "Website Accessibility Checker",
"version": "1.1",
"description": "Checks website accessibility issues based on WCAG guidelines.",
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"64": "icons/logo_64.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icons/logo_64.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
],
"run_at": "document_idle"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{4cd750cd-eacf-412b-b43c-17e3f22598f0}"
}
}
}