Tota11y Toolkit Chrome Extension
Use Tota11y everywhere to maximize accessibility.
Cos'è Tota11y Toolkit Chrome Extension?
Tota11y Toolkit Chrome Extension è un'estensione di Chrome sviluppata da Mike Zrimsek, e la sua funzione principale è "Use Tota11y everywhere to maximize accessibility.".
Scarica il file CRX dell'estensione Tota11y Toolkit Chrome Extension
Scarica i file di estensione Tota11y Toolkit Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | plgldjckfjonhhaflbghkdmbcmffccpn |
URL Ufficiale | https://chrome.google.com/webstore/detail/tota11y-toolkit-chrome-ex/plgldjckfjonhhaflbghkdmbcmffccpn |
Descrizione | Use Tota11y everywhere to maximize accessibility. |
Dimensione del File | 86.26 KB |
Conteggio Installazioni | 347 |
Versione Corrente | 0.9.5 |
Ultimo Aggiornamento | 2017-02-24 |
Data di Pubblicazione | 2017-02-24 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Mike Zrimsek |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |