Text Narrator
This extension narrates text on the page.
Text Narrator là gì?
Text Narrator là một tiện ích mở rộng Chrome được phát triển bởi Jeffrey Yang, và tính năng chính của nó là "This extension narrates text on the page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Text Narrator
Tải xuống các tệp mở rộng Text Narrator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
URL Chính Thức | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
Mô tả | This extension narrates text on the page. |
Kích Thước Tệp | 18.79 KB |
Số Lần Cài Đặt | 50,000 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-01-20 |
Ngày Phát Hành | 2014-01-20 |
Đánh Giá | 2.94/5 Tổng số 54 Đánh Giá |
Nhà Phát Triển | Jeffrey Yang |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |