Hanzi to Pinyin
Converts Chinese characters to pinyin.
什麼是Hanzi to Pinyin?
Hanzi to Pinyin是由Jeffrey Wang開發的Chrome擴展程式,該擴展的主要功能是“Converts Chinese characters to pinyin.”。
擴展截圖
下載Hanzi to Pinyin擴展crx文件
下載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!
擴展基本資訊
名稱 | Hanzi to Pinyin |
ID | dhpgfadbbmfeioimiddclmcjcmcifjfh |
官方網址 | 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" } ] } |