Pinyinify

This extension replaces all Chinese characters with pinyin

Qu'est-ce que Pinyinify ?

Pinyinify est une extension Chrome développée par https://michaelhu.net, et sa fonction principale est "This extension replaces all Chinese characters with pinyin".

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Pinyinify 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

                        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/                    

Informations de Base sur l'Extension

Nom Pinyinify Pinyinify
ID ilgkgfbgiempllndljggnmblmcajbcee
URL Officiel https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee
Description This extension replaces all Chinese characters with pinyin
Taille du Fichier 300 KB
Nombre d'Installations 192
Version Actuelle 1.3
Dernière Mise à Jour 2016-07-14
Date de Publication 2016-07-13
Évaluation 3.50/5 Total 2 Évaluations
Développeur https://michaelhu.net
Type de Paiement free
Langues Prises en Charge 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
}