Hanzi to Pinyin
Converts Chinese characters to pinyin.
Что такое Hanzi to Pinyin?
Hanzi to Pinyin - это расширение Chrome, разработанное Jeffrey Wang, и его основная функция - "Converts Chinese characters to pinyin.".
Снимки экрана расширения
Скачать файл CRX расширения Hanzi to Pinyin
Скачайте файлы расширений Hanzi to Pinyin в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Hanzi (Chinese characters) can be difficult to read for Chinese learners and fluent Chinese speakers alike. Anytime you browse to a web page with hanzi, this extension automatically converts or appends pinyin to after the Chinese character, depending on your choice. Make reading Chinese a breeze for you!                     Основная информация о расширении
| Название |   |  
| ID | dhpgfadbbmfeioimiddclmcjcmcifjfh | 
| Официальный URL | https://chromewebstore.google.com/detail/hanzi-to-pinyin/dhpgfadbbmfeioimiddclmcjcmcifjfh | 
| Описание | Converts Chinese characters to pinyin. | 
| Размер файла | 193 KB | 
| Количество установок | 93 | 
| Текущая Версия | 1.0 | 
| Последнее Обновление | 2020-07-22 | 
| Дата публикации | 2020-07-22 | 
| Рейтинг | 5.00/5 Всего 1 оценок | 
| Разработчик | Jeffrey Wang | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Поддерживаемые языки | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hanzi to Pinyin",
    "version": "1.0",
    "description": "Converts Chinese characters to pinyin.",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "chrome_extension.js"
            ],
            "run_at": "document_end"
        }
    ]
}  |  |