Wikipedia Pronouncer
Adds a button to pronounce the topic of a wikipedia page.
Wikipedia Pronouncer là gì?
Wikipedia Pronouncer là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Adds a button to pronounce the topic of a wikipedia 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 Wikipedia Pronouncer
Tải xuống các tệp mở rộng Wikipedia Pronouncer 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wikipedia Pronouncer |
ID | gcaepekagnablmnckaiekfpjjpcikeib |
URL Chính Thức | https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib |
Mô tả | Adds a button to pronounce the topic of a wikipedia page. |
Kích Thước Tệp | 104 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-10-02 |
Ngày Phát Hành | 2018-10-02 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |