Pinyinify

This extension replaces all Chinese characters with pinyin

Co to jest Pinyinify?

Pinyinify to rozszerzenie Chrome opracowane przez https://michaelhu.net, a jego główną funkcją jest „This extension replaces all Chinese characters with pinyin”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pinyinify

Pobierz pliki rozszerzeń Pinyinify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Pinyinify Pinyinify
ID ilgkgfbgiempllndljggnmblmcajbcee
Oficjalny URL https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee
Opis This extension replaces all Chinese characters with pinyin
Rozmiar pliku 300 KB
Liczba instalacji 192
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2016-07-14
Data Publikacji 2016-07-13
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper https://michaelhu.net
Typ Płatności free
Obsługiwane Języki 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
}