Text Narrator
This extension narrates text on the page.
Co to jest Text Narrator?
Text Narrator to rozszerzenie Chrome opracowane przez Jeffrey Yang, a jego główną funkcją jest „This extension narrates text on the page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Text Narrator
Pobierz pliki rozszerzeń Text Narrator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
Oficjalny URL | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
Opis | This extension narrates text on the page. |
Rozmiar pliku | 18.79 KB |
Liczba instalacji | 50,000 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-01-20 |
Data Publikacji | 2014-01-20 |
Ocena | 2.94/5 Łącznie 54 Oceny |
Deweloper | Jeffrey Yang |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
Obsługiwane Języki | 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" } } |