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
电子邮箱 [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"
        }
    }
}