Hanzi to Pinyin

Converts Chinese characters to pinyin.

Hanzi to Pinyin là gì?

Hanzi to Pinyin là một tiện ích mở rộng Chrome được phát triển bởi Jeffrey Wang, và tính năng chính của nó là "Converts Chinese characters to pinyin.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hanzi to Pinyin

Tải xuống các tệp mở rộng Hanzi to Pinyin 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

                        Hanzi (Chinese characters) can be difficult to read for Chinese learners and fluent Chinese speakers alike. Anytime you browse to a web page with hanzi, this extension automatically converts or appends pinyin to after the Chinese character, depending on your choice. Make reading Chinese a breeze for you!                    

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

Tên Hanzi to Pinyin Hanzi to Pinyin
ID dhpgfadbbmfeioimiddclmcjcmcifjfh
URL Chính Thức https://chromewebstore.google.com/detail/hanzi-to-pinyin/dhpgfadbbmfeioimiddclmcjcmcifjfh
Mô tả Converts Chinese characters to pinyin.
Kích Thước Tệp 193 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-07-22
Ngày Phát Hành 2020-07-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Jeffrey Wang
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hanzi to Pinyin",
    "version": "1.0",
    "description": "Converts Chinese characters to pinyin.",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "chrome_extension.js"
            ],
            "run_at": "document_end"
        }
    ]
}