Pinyinify
This extension replaces all Chinese characters with pinyin
Pinyinifyとは何ですか?
Pinyinifyはhttps://michaelhu.netによって開発されたChromeの拡張機能で、その主な機能は「This extension replaces all Chinese characters with pinyin」です。
拡張機能のスクリーンショット
Pinyinify拡張機能のCRXファイルをダウンロード
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/ 拡張機能の基本情報
| 名前 | |
| 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
} | |