Inspect and view changes in Accessibility View 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Accessibility View",
"version": "1.3.35",
"description": "Accessibility View converts an arbitrary website into its accessibility relevant form.",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": {
"128": "icon.png"
}
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
]
}