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
官方URL 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"
    ]
}