Wikipedia Pronouncer
Adds a button to pronounce the topic of a wikipedia page.
Was ist Wikipedia Pronouncer?
Wikipedia Pronouncer ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to pronounce the topic of a wikipedia page.".
Erweiterungsscreenshots
Wikipedia Pronouncer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wikipedia Pronouncer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gcaepekagnablmnckaiekfpjjpcikeib |
| Offizielle URL | https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib |
| Beschreibung | Adds a button to pronounce the topic of a wikipedia page. |
| Dateigröße | 104 KB |
| Installationsanzahl | 24 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2018-10-02 |
| Veröffentlichungsdatum | 2018-10-02 |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |