Wikipedia Pronouncer
Adds a button to pronounce the topic of a wikipedia page.
什麼是Wikipedia Pronouncer?
Wikipedia Pronouncer是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Adds a button to pronounce the topic of a wikipedia page.”。
擴展截圖
下載Wikipedia Pronouncer擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | gcaepekagnablmnckaiekfpjjpcikeib |
| 官方網址 | 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"
]
} | |