Wiktionary Pronounce Selection

Show pronunciation of selected word from en.wiktionary.org

¿Qué es Wiktionary Pronounce Selection?

Wiktionary Pronounce Selection es una extensión de Chrome desarrollada por Mehdi Abdelkhalek, y su función principal es "Show pronunciation of selected word from en.wiktionary.org".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Wiktionary Pronounce Selection

Descarga archivos de extensión Wiktionary Pronounce Selection en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Wiktionary Pronounce Selection Wiktionary Pronounce Selection
ID obdelgcmbklmhimmklkajobdoacfbdpc
URL Oficial https://chromewebstore.google.com/detail/wiktionary-pronounce-sele/obdelgcmbklmhimmklkajobdoacfbdpc
Descripción Show pronunciation of selected word from en.wiktionary.org
Tamaño del Archivo 75.68 KB
Cantidad de Instalaciones 196
Versión Actual 0.4
Última Actualización 2023-09-08
Fecha de Publicación 2020-11-09
Calificación 4.00/5 Total de 3 Calificaciones
Desarrollador Mehdi Abdelkhalek
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection
URL de la Página de Ayuda https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection/issues
Idiomas Soportados 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"
    ]
}