Wikipedia Pronouncer
Adds a button to pronounce the topic of a wikipedia page.
Hvad er Wikipedia Pronouncer?
Wikipedia Pronouncer er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Adds a button to pronounce the topic of a wikipedia page.".
Udvidelsesskærmbilleder
Download Wikipedia Pronouncer-udvidelses-CRX-fil
Download Wikipedia Pronouncer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Wikipedia Pronouncer |
ID | gcaepekagnablmnckaiekfpjjpcikeib |
Officiel URL | https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib |
Beskrivelse | Adds a button to pronounce the topic of a wikipedia page. |
Filstørrelse | 104 KB |
Antal Installationer | 24 |
Nuværende Version | 1.0 |
Senest Opdateret | 2018-10-02 |
Udgivelsesdato | 2018-10-02 |
Udvikler | Unknown |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |