Text Narrator
This extension narrates text on the page.
Cos'è Text Narrator?
Text Narrator è un'estensione di Chrome sviluppata da Jeffrey Yang, e la sua funzione principale è "This extension narrates text on the page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Text Narrator
Scarica i file di estensione Text Narrator 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
This is an open source simple text-to-speech narrator that uses Chrome's built-in Text-to-Speech API. Tested on Windows 8 and OSX so far. Please report any issues. Source code and issue tracking are available here: https://github.com/sajacy/textnarrator-chrome-extension
Informazioni di Base sull'Estensione
Nome | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
URL Ufficiale | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
Descrizione | This extension narrates text on the page. |
Dimensione del File | 18.79 KB |
Conteggio Installazioni | 50,000 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-01-20 |
Data di Pubblicazione | 2014-01-20 |
Valutazione | 2.94/5 Totale 54 Valutazioni |
Sviluppatore | Jeffrey Yang |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Text Narrator", "description": "This extension narrates text on the page.", "version": "1.0", "background": { "scripts": [ "narrate.js", "background.js" ] }, "icons": { "16": "img\/speak16.png", "48": "img\/speak48.png", "128": "img\/speak.png" }, "permissions": [ "contextMenus", "tabs", "tts", "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_icon": "img\/speak.png", "default_popup": "popup.html" } } |