Pinyinify

This extension replaces all Chinese characters with pinyin

Pinyinifyคืออะไร?

Pinyinify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://michaelhu.net และคุณลักษณะหลักของมันคือ "This extension replaces all Chinese characters with pinyin"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pinyinify

ดาวน์โหลดไฟล์ส่วนขยาย Pinyinify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pinyinify Pinyinify
ID ilgkgfbgiempllndljggnmblmcajbcee
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee
คำอธิบาย This extension replaces all Chinese characters with pinyin
ขนาดไฟล์ 300 KB
จำนวนการติดตั้ง 192
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2016-07-14
วันที่เผยแพร่ 2016-07-13
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://michaelhu.net
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}