Wiktionary Pronounce Selection

Show pronunciation of selected word from en.wiktionary.org

Wiktionary Pronounce Selection là gì?

Wiktionary Pronounce Selection là một tiện ích mở rộng Chrome được phát triển bởi Mehdi Abdelkhalek, và tính năng chính của nó là "Show pronunciation of selected word from en.wiktionary.org".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wiktionary Pronounce Selection

Tải xuống các tệp mở rộng Wiktionary Pronounce Selection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wiktionary Pronounce Selection Wiktionary Pronounce Selection
ID obdelgcmbklmhimmklkajobdoacfbdpc
URL Chính Thức https://chromewebstore.google.com/detail/wiktionary-pronounce-sele/obdelgcmbklmhimmklkajobdoacfbdpc
Mô tả Show pronunciation of selected word from en.wiktionary.org
Kích Thước Tệp 75.68 KB
Số Lần Cài Đặt 196
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2023-09-08
Ngày Phát Hành 2020-11-09
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Mehdi Abdelkhalek
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection
URL Trang Trợ Giúp https://github.com/mehdi-abdelkhalek/wiktionary-pronounce-selection/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}