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" } } |