Wiktionary Pronounce Selection

Show pronunciation of selected word from en.wiktionary.org

什麼是Wiktionary Pronounce Selection?

Wiktionary Pronounce Selection是由Mehdi Abdelkhalek開發的Chrome擴展程式,該擴展的主要功能是“Show pronunciation of selected word from en.wiktionary.org”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Wiktionary Pronounce Selection擴展crx文件

下載Wiktionary Pronounce Selection擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Wiktionary Pronounce Selection Wiktionary Pronounce Selection
ID obdelgcmbklmhimmklkajobdoacfbdpc
官方網址 https://chromewebstore.google.com/detail/wiktionary-pronounce-sele/obdelgcmbklmhimmklkajobdoacfbdpc
簡介 Show pronunciation of selected word from en.wiktionary.org
檔案大小 75.68 KB
安裝次數 196
目前版本 0.4
更新時間 2023-09-08
上架時間 2020-11-09
評分 4.00/5 共 3 次評分
開發者 Mehdi Abdelkhalek
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection
說明頁面URL https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection/issues
支援的語言 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"
    ]
}