Text Narrator
This extension narrates text on the page.
Qu'est-ce que Text Narrator ?
Text Narrator est une extension Chrome développée par Jeffrey Yang, et sa fonction principale est "This extension narrates text on the page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Text Narrator
Téléchargez les fichiers d'extension Text Narrator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
URL Officiel | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
Description | This extension narrates text on the page. |
Taille du Fichier | 18.79 KB |
Nombre d'Installations | 50,000 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-01-20 |
Date de Publication | 2014-01-20 |
Évaluation | 2.94/5 Total 54 Évaluations |
Développeur | Jeffrey Yang |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
Langues Prises en Charge | 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" } } |