Pinyinizer

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

O que é Pinyinizer?

Pinyinizer é uma extensão do Chrome desenvolvida por Shinya Fujino, e sua principal característica é "Annotate Hanzi (汉字) on the page with ruby.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Pinyinizer

Baixe arquivos de extensão Pinyinizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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. 一起加油吧 :)                    

Informações Básicas da Extensão

Nome Pinyinizer Pinyinizer
ID dkmlhgmmfochpgplckjlfakepmmhpaep
URL Oficial https://chromewebstore.google.com/detail/pinyinizer/dkmlhgmmfochpgplckjlfakepmmhpaep
Descrição Annotate Hanzi (汉字) on the page with ruby.
Tamanho do Arquivo 90.7 KB
Contagem de Instalações 987
Versão Atual 0.1.0
Última Atualização 2017-04-30
Data de Publicação 2017-04-30
Classificação 4.44/5 Total de 9 Avaliações
Desenvolvedor Shinya Fujino
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    }
}