Inspect and view changes in Accessibility Checker for GitHub Markdown 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 Checker for GitHub Markdown",
"description": "Highlight accessibility issues as you write Markdown on github.com.",
"manifest_version": 3,
"version": "1.15.6",
"content_scripts": [
{
"matches": [
"https://*.github.com/*"
],
"js": [
"dist/content-script.js"
]
}
],
"icons": {
"128": "assets/icon-128.png"
},
"homepage_url": "https://github.com/iansan5653/markdown-a11y-extension",
"minimum_chrome_version": "109",
"browser_specific_settings": {
"gecko": {
"id": "markdown-a11y-checker@iansan5653",
"strict_min_version": "112.0"
}
}
}