Wiktionary Pronounce Selection

Show pronunciation of selected word from en.wiktionary.org

O que é Wiktionary Pronounce Selection?

Wiktionary Pronounce Selection é uma extensão do Chrome desenvolvida por Mehdi Abdelkhalek, e sua principal característica é "Show pronunciation of selected word from en.wiktionary.org".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Wiktionary Pronounce Selection

Baixe arquivos de extensão Wiktionary Pronounce Selection no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Wiktionary Pronounce Selection Wiktionary Pronounce Selection
ID obdelgcmbklmhimmklkajobdoacfbdpc
URL Oficial https://chromewebstore.google.com/detail/wiktionary-pronounce-sele/obdelgcmbklmhimmklkajobdoacfbdpc
Descrição Show pronunciation of selected word from en.wiktionary.org
Tamanho do Arquivo 75.68 KB
Contagem de Instalações 196
Versão Atual 0.4
Última Atualização 2023-09-08
Data de Publicação 2020-11-09
Classificação 4.00/5 Total de 3 Avaliações
Desenvolvedor Mehdi Abdelkhalek
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection
URL da Página de Ajuda https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection/issues
Idiomas Suportados 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"
    ]
}