Tota11y Toolkit Chrome Extension
Use Tota11y everywhere to maximize accessibility.
Was ist Tota11y Toolkit Chrome Extension?
Tota11y Toolkit Chrome Extension ist eine Chrome-Erweiterung, die von Mike Zrimsek entwickelt wurde, und ihr Hauptmerkmal ist "Use Tota11y everywhere to maximize accessibility.".
Tota11y Toolkit Chrome Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tota11y Toolkit Chrome Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Tota11y is a great toolkit for doing some easy fixes to make your webpages more accessible. Features * Injects Tota11y tookit into page * Allows for toggling toolbar on/off by clicking extension logo (default to off) * Adds a "Show All" plugin to activate all accessibility plugins at once Usage 1. Toggle the toolbar on by clicking on the extension icon 2. Click on the toolbar that popped up on the bottom left of your screen 3. Select the different options to see if there are some changes you could make to improve accessibility Source for this extension can be found at: https://github.com/mzrimsek/tota11y-extension
Grundlegende Informationen zur Erweiterung
Name | |
ID | plgldjckfjonhhaflbghkdmbcmffccpn |
Offizielle URL | https://chrome.google.com/webstore/detail/tota11y-toolkit-chrome-ex/plgldjckfjonhhaflbghkdmbcmffccpn |
Beschreibung | Use Tota11y everywhere to maximize accessibility. |
Dateigröße | 86.26 KB |
Installationsanzahl | 347 |
Aktuelle Version | 0.9.5 |
Letztes Update | 2017-02-24 |
Veröffentlichungsdatum | 2017-02-24 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | Mike Zrimsek |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tota11y Toolkit Chrome Extension", "short_name": "Tota11y Chrome Extension", "version": "0.9.5", "manifest_version": 2, "description": "Use Tota11y everywhere to maximize accessibility.", "icons": { "128": "src\/img\/logo.png" }, "browser_action": { "default_icon": "src\/img\/logo.png", "default_title": "tota11y" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "src\/css\/content.css" ], "js": [ "src\/js\/tota11y.min.js", "src\/js\/content.js" ] } ], "background": { "scripts": [ "src\/js\/background.js" ] }, "permissions": [ "activeTab" ] } |