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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}