Pinyinizer

Annotate Hanzi (汉字) on the page with ruby.

Pinyinizerคืออะไร?

Pinyinizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shinya Fujino และคุณลักษณะหลักของมันคือ "Annotate Hanzi (汉字) on the page with ruby."

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

screenshot
screenshot

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

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

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

                        Pinyinizer offers a functionality to detect 汉字 (Hanzi) on a webpage and annotate them with corresponding 拼音 (Pinyin) as ruby.

You can use the extension on any webpage. Just click the icon, and 汉字 on the page will be get annotated!

I developed the extension mainly for the purpose of learning Chinese language. I would be happy if Chinese learners enjoy using it. 一起加油吧 :)                    

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

ชื่อ Pinyinizer Pinyinizer
ID dkmlhgmmfochpgplckjlfakepmmhpaep
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pinyinizer/dkmlhgmmfochpgplckjlfakepmmhpaep
คำอธิบาย Annotate Hanzi (汉字) on the page with ruby.
ขนาดไฟล์ 90.7 KB
จำนวนการติดตั้ง 987
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2017-04-30
วันที่เผยแพร่ 2017-04-30
คะแนน 4.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Shinya Fujino
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinyinizer",
    "description": "Annotate Hanzi (\u6c49\u5b57) on the page with ruby.",
    "version": "0.1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "resources\/hanzi.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/script.js",
                "src\/jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Pinyinize this page",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    }
}