Wikipedia Pronouncer

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

Apa itu Wikipedia Pronouncer?

Wikipedia Pronouncer adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Adds a button to pronounce the topic of a wikipedia page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Wikipedia Pronouncer

Unduh file ekstensi Wikipedia Pronouncer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Wikipedia Pronouncer Wikipedia Pronouncer
ID gcaepekagnablmnckaiekfpjjpcikeib
URL Resmi https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib
Deskripsi Adds a button to pronounce the topic of a wikipedia page.
Ukuran File 104 KB
Jumlah Instalasi 24
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-10-02
Tanggal Publikasi 2018-10-02
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}