Find and fix compliance issues in record time with automated checks and smart suggestions.
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",
"version": "2.26.0",
"manifest_version": 3,
"name": "Stark Accessibility Checker",
"author": "Stark Lab, Inc.",
"description": "Find and fix compliance issues in record time with automated checks and smart suggestions.",
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"action": {},
"web_accessible_resources": [
{
"resources": [
"scan-illo.png",
"scan-illo--dark.png",
"sidekick-gradient-light.png",
"sidekick-gradient-dark.png",
"premium-upsell.png",
"projects-chart.png"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"devtool/content-script.bundle.js"
],
"all_frames": true
}
],
"icons": {
"16": "stark-16.png",
"32": "stark-32.png",
"48": "stark-48.png",
"128": "stark-128.png"
},
"devtools_page": "devtool/background.html"
}