Wiktionary Pronounce Selection

Show pronunciation of selected word from en.wiktionary.org

Qu'est-ce que Wiktionary Pronounce Selection ?

Wiktionary Pronounce Selection est une extension Chrome développée par Mehdi Abdelkhalek, et sa fonction principale est "Show pronunciation of selected word from en.wiktionary.org".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Wiktionary Pronounce Selection

Téléchargez les fichiers d'extension Wiktionary Pronounce Selection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Wiktionary Pronounce Selection Wiktionary Pronounce Selection
ID obdelgcmbklmhimmklkajobdoacfbdpc
URL Officiel https://chromewebstore.google.com/detail/wiktionary-pronounce-sele/obdelgcmbklmhimmklkajobdoacfbdpc
Description Show pronunciation of selected word from en.wiktionary.org
Taille du Fichier 75.68 KB
Nombre d'Installations 196
Version Actuelle 0.4
Dernière Mise à Jour 2023-09-08
Date de Publication 2020-11-09
Évaluation 4.00/5 Total 3 Évaluations
Développeur Mehdi Abdelkhalek
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection
URL de la Page d'Aide https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection/issues
Langues Prises en Charge 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"
    ]
}