Wikipedia Pronouncer

Adds a button to pronounce the topic of a wikipedia page.

What is Wikipedia Pronouncer?

Wikipedia Pronouncer is a Chrome extension developed by Unknown, and its main feature is "Adds a button to pronounce the topic of a wikipedia page.".

Extension Screenshots

screenshot

Download Wikipedia Pronouncer Extension CRX File

Download Wikipedia Pronouncer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Wikipedia Pronouncer Wikipedia Pronouncer
ID gcaepekagnablmnckaiekfpjjpcikeib
Official URL https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib
Description Adds a button to pronounce the topic of a wikipedia page.
File Size 104 KB
Installation Count 24
Current Version 1.0
Last Updated 2018-10-02
Publish Date 2018-10-02
Developer Unknown
Payment Type free
Supported Languages 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"
    ]
}