Text Narrator
This extension narrates text on the page.
Что такое Text Narrator?
Text Narrator - это расширение Chrome, разработанное Jeffrey Yang, и его основная функция - "This extension narrates text on the page.".
Снимки экрана расширения
Скачать файл CRX расширения Text Narrator
Скачайте файлы расширений Text Narrator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
Официальный URL | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
Описание | This extension narrates text on the page. |
Размер файла | 18.79 KB |
Количество установок | 50,000 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-01-20 |
Дата публикации | 2014-01-20 |
Рейтинг | 2.94/5 Всего 54 оценок |
Разработчик | Jeffrey Yang |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
Поддерживаемые языки | 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" } } |