Inspect and view changes in a11y.css 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",
"manifest_version": 3,
"name": "a11y.css",
"description": "a11y.css provides warnings about possible risks and mistakes that exist in HTML.",
"version": "2.1.0",
"default_locale": "en",
"minimum_chrome_version": "93",
"permissions": [
"activeTab",
"tabs",
"storage",
"scripting"
],
"action": {
"default_title": "a11y.css",
"default_popup": "popup/index.html",
"default_icon": {
"19": "icons/a11y-css_19.png",
"38": "icons/a11y-css_38.png"
}
},
"background": {
"service_worker": "/scripts/background/main.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"/scripts/injected/alt.js"
],
"css": [
"/scripts/injected/alt.css"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons/a11y-css_16.png",
"48": "icons/a11y-css_48.png",
"128": "icons/a11y-css_128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons/info.svg",
"icons/ko.svg",
"icons/ok.svg",
"scripts/injected/*",
"css/*"
],
"matches": [
"*://*/*"
]
}
]
}