gSpeak
Speak the selection or webpage content.
gSpeak là gì?
gSpeak là một tiện ích mở rộng Chrome được phát triển bởi Sandip Chitale, và tính năng chính của nó là "Speak the selection or webpage content.".
Ả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 gSpeak
Tải xuống các tệp mở rộng gSpeak 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
Click on the Speak button in the toolbar to speak the text selection in the webpage. If there is no text selection in the webpage, the webpage content is spoken. While the speech is in progress, the badge on the button shows the remaining percentage of the text to be spoken. Clicking on the button pauses the speech. Once paused, if you click on the button within one second the speech is cancelled. After one second, clicking on the button resumes the speech. Some voices may not support the event to indicate a word was spoken. Therefore it may not be possible to show the remaining percentage badge. Choose a different voice using options.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ceeodfklkbgkhcnfglgkidpoookifcbd |
URL Chính Thức | https://chrome.google.com/webstore/detail/gspeak/ceeodfklkbgkhcnfglgkidpoookifcbd |
Mô tả | Speak the selection or webpage content. |
Kích Thước Tệp | 24.76 KB |
Số Lần Cài Đặt | 235 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-12-17 |
Ngày Phát Hành | 2014-12-17 |
Đánh Giá | 3.11/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Sandip Chitale |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html |
URL Trang Trợ Giúp | http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "gSpeak", "version": "1.0", "manifest_version": 2, "description": "Speak the selection or webpage content.", "icons": { "16": "play.png", "48": "play48.png", "128": "play128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "browser_action": { "default_title": "Speak", "default_icon": "play.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": false, "js": [ "content_script.js" ] } ], "permissions": [ "tabs", "tts", "http:\/\/*\/*", "https:\/\/*\/*" ], "minimum_chrome_version": "14" } |