Pinyinify

This extension replaces all Chinese characters with pinyin

Co je Pinyinify?

Pinyinify je rozšíření Chrome vyvinuté https://michaelhu.net, a jeho hlavní funkcí je „This extension replaces all Chinese characters with pinyin“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Pinyinify

Stáhněte si soubory rozšíření Pinyinify ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Pinyinify Pinyinify
ID ilgkgfbgiempllndljggnmblmcajbcee
Oficiální URL https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee
Popis This extension replaces all Chinese characters with pinyin
Velikost souboru 300 KB
Počet instalací 192
Aktuální Verze 1.3
Poslední Aktualizace 2016-07-14
Datum Vydání 2016-07-13
Hodnocení 3.50/5 Celkem 2 Hodnocení
Vývojář https://michaelhu.net
Typ Platby free
Podporované Jazyky 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
}