Websites Accessibility
accessibility tool for every website
What is Websites Accessibility?
Websites Accessibility is a Chrome extension developed by RanBuch, and its main feature is "accessibility tool for every website".
Extension Screenshots
Download Websites Accessibility Extension CRX File
Download Websites Accessibility extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Add accessibility menu to every website!
Features:
* increase text size
* decrease text size
* increase text spacing
* decrease text spacing
* invert colors
* gray hues
* underline links
* hotkeys
* big cursor
* reading guide
* text to speech
* speech to text
For developers who what's to add this to their site:
npm:
https://www.npmjs.com/package/accessibility
github:
https://github.com/ranbuch/accessibility Extension Basic Information
| Name | |
| ID | aefndakodjcaapnmofhkmdbkabghakgn |
| Official URL | https://chromewebstore.google.com/detail/websites-accessibility/aefndakodjcaapnmofhkmdbkabghakgn |
| Description | accessibility tool for every website |
| File Size | 24.44 KB |
| Installation Count | 312 |
| Current Version | 3.0.96 |
| Last Updated | 2022-07-23 |
| Publish Date | 2020-04-25 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | RanBuch |
| [email protected] | |
| Payment Type | free |
| Supported Languages | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Websites Accessibility",
"short_name": "accessibility",
"version": "3.0.96",
"description": "accessibility tool for every website",
"manifest_version": 2,
"background": {
"page": "background.html"
},
"icons": {
"16": "logo_accessibility_16.png",
"48": "logo_accessibility_48.png",
"128": "logo_accessibility_128.png"
},
"browser_action": {
"default_icon": {
"19": "logo_accessibility_19.png",
"38": "logo_accessibility_38.png"
},
"default_title": "website accessibility tool",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"accessibility.user.js"
],
"run_at": "document_start"
}
]
} | |