Pinyinizer

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

Qu'est-ce que Pinyinizer ?

Pinyinizer est une extension Chrome développée par Shinya Fujino, et sa fonction principale est "Annotate Hanzi (汉字) on the page with ruby.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Pinyinizer

Téléchargez les fichiers d'extension Pinyinizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Pinyinizer Pinyinizer
ID dkmlhgmmfochpgplckjlfakepmmhpaep
URL Officiel https://chromewebstore.google.com/detail/pinyinizer/dkmlhgmmfochpgplckjlfakepmmhpaep
Description Annotate Hanzi (汉字) on the page with ruby.
Taille du Fichier 90.7 KB
Nombre d'Installations 987
Version Actuelle 0.1.0
Dernière Mise à Jour 2017-04-30
Date de Publication 2017-04-30
Évaluation 4.44/5 Total 9 Évaluations
Développeur Shinya Fujino
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}