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
}