Wiktionary Pronounce Selection

Show pronunciation of selected word from en.wiktionary.org

Co je Wiktionary Pronounce Selection?

Wiktionary Pronounce Selection je rozšíření Chrome vyvinuté Mehdi Abdelkhalek, a jeho hlavní funkcí je „Show pronunciation of selected word from en.wiktionary.org“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Wiktionary Pronounce Selection

Stáhněte si soubory rozšíření Wiktionary Pronounce Selection ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Check how to pronounce words as you browse.

This extension adds a button in your browser's toolbar. Select a word then click, or click then enter a word, to see/hear how to pronounce it.

You can choose a list of preferred languages, the first one will be used by default.

Pronunciations are provided by https://en.wiktionary.org

This extension is open source with GPLv3 license
https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection                    

Základní Informace o Rozšíření

Název Wiktionary Pronounce Selection Wiktionary Pronounce Selection
ID obdelgcmbklmhimmklkajobdoacfbdpc
Oficiální URL https://chromewebstore.google.com/detail/wiktionary-pronounce-sele/obdelgcmbklmhimmklkajobdoacfbdpc
Popis Show pronunciation of selected word from en.wiktionary.org
Velikost souboru 75.68 KB
Počet instalací 196
Aktuální Verze 0.4
Poslední Aktualizace 2023-09-08
Datum Vydání 2020-11-09
Hodnocení 4.00/5 Celkem 3 Hodnocení
Vývojář Mehdi Abdelkhalek
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection
URL Stránky Nápovědy https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wiktionary Pronounce Selection",
    "version": "0.4",
    "description": "Show pronunciation of selected word from en.wiktionary.org",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_title": "Wiktionary Pronounce",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}