Wikipedia Pronouncer
Adds a button to pronounce the topic of a wikipedia page.
Wikipedia Pronouncerคืออะไร?
Wikipedia Pronouncer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Adds a button to pronounce the topic of a wikipedia page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wikipedia Pronouncer
ดาวน์โหลดไฟล์ส่วนขยาย Wikipedia Pronouncer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a button next on a Wikipedia page next to the topic header that allows for text to speech of the topic name. Options allow changing the language, volume, and speed of the voice. NOTE: Language selection doesn't currently change anything. Will fix in future.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Wikipedia Pronouncer |
ID | gcaepekagnablmnckaiekfpjjpcikeib |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib |
คำอธิบาย | Adds a button to pronounce the topic of a wikipedia page. |
ขนาดไฟล์ | 104 KB |
จำนวนการติดตั้ง | 24 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2018-10-02 |
วันที่เผยแพร่ | 2018-10-02 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wikipedia Pronouncer", "version": "1.0", "description": "Adds a button to pronounce the topic of a wikipedia page.", "permissions": [ "storage", "ttsEngine" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/en.wikipedia.org\/wiki\/*" ], "js": [ "background.js" ] } ], "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "manifest_version": 2, "web_accessible_resources": [ "icon32.png", "icon128.png", "icon64.png" ] } |