Pinyinizer

Annotate Hanzi (汉字) on the page with ruby.

Pinyinizerとは何ですか?

PinyinizerはShinya Fujinoによって開発されたChromeの拡張機能で、その主な機能は「Annotate Hanzi (汉字) on the page with ruby.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Pinyinizer拡張機能のCRXファイルをダウンロード

Pinyinizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Pinyinizer offers a functionality to detect 汉字 (Hanzi) on a webpage and annotate them with corresponding 拼音 (Pinyin) as ruby.

You can use the extension on any webpage. Just click the icon, and 汉字 on the page will be get annotated!

I developed the extension mainly for the purpose of learning Chinese language. I would be happy if Chinese learners enjoy using it. 一起加油吧 :)                    

拡張機能の基本情報

名前 Pinyinizer Pinyinizer
ID dkmlhgmmfochpgplckjlfakepmmhpaep
公式URL https://chromewebstore.google.com/detail/pinyinizer/dkmlhgmmfochpgplckjlfakepmmhpaep
説明 Annotate Hanzi (汉字) on the page with ruby.
ファイルサイズ 90.7 KB
インストール数 987
現在のバージョン 0.1.0
最終更新日 2017-04-30
公開日 2017-04-30
評価 4.44/5 合計 9 レビュー
開発者 Shinya Fujino
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinyinizer",
    "description": "Annotate Hanzi (\u6c49\u5b57) on the page with ruby.",
    "version": "0.1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "resources\/hanzi.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/script.js",
                "src\/jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Pinyinize this page",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    }
}