Pinyinify

This extension replaces all Chinese characters with pinyin

Pinyinify là gì?

Pinyinify là một tiện ích mở rộng Chrome được phát triển bởi https://michaelhu.net, và tính năng chính của nó là "This extension replaces all Chinese characters with pinyin".

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

screenshot
screenshot

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

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

                        Replaces Chinese hànzì with their pīnyīn equivalents for ABCs like me who aren't able to read Chinese characters.

1.3
Added enable/disable toggle button

Source Code:
https://github.com/TheMichaelHu/pinyinify

This product uses the UNIHAN database:
http://www.unicode.org/reports/tr38/                    

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

Tên Pinyinify Pinyinify
ID ilgkgfbgiempllndljggnmblmcajbcee
URL Chính Thức https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee
Mô tả This extension replaces all Chinese characters with pinyin
Kích Thước Tệp 300 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2016-07-14
Ngày Phát Hành 2016-07-13
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://michaelhu.net
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",
    "manifest_version": 2,
    "name": "Pinyinify",
    "description": "This extension replaces all Chinese characters with pinyin",
    "version": "1.3",
    "icons": {
        "16": "img\/tray_icon16.png",
        "48": "img\/tray_icon48.png",
        "128": "img\/tray_icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "unihan.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "img\/tray_icon128.png"
    },
    "offline_enabled": true
}