Inspect and view changes in AccessibilityPro 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": "AccessibilityPro",
"version": "1.0",
"description": "Check web pages for accessibility issues and provide improvement suggestions",
"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": "AccessibilityPro",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{081e0ffd-c43f-4551-bd80-cc754e32e6d1}"
}
}
}