Websites Accessibility
accessibility tool for every website
Wat is Websites Accessibility?
Websites Accessibility is een Chrome-extensie ontwikkeld door RanBuch, en de belangrijkste functie is "accessibility tool for every website".
Extensie Screenshots
Download het CRX-bestand van de extensie Websites Accessibility
Download Websites Accessibility-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | aefndakodjcaapnmofhkmdbkabghakgn |
| Officiële URL | https://chromewebstore.google.com/detail/websites-accessibility/aefndakodjcaapnmofhkmdbkabghakgn |
| Beschrijving | accessibility tool for every website |
| Bestandsgrootte | 24.44 KB |
| Aantal Installaties | 312 |
| Huidige Versie | 3.0.96 |
| Laatst Bijgewerkt | 2022-07-23 |
| Publicatiedatum | 2020-04-25 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | RanBuch |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
]
} | |