Pinyin Reader

Adds pinyin captions above Chinese Hanzi script

O que é Pinyin Reader?

Pinyin Reader é uma extensão do Chrome desenvolvida por Brendan Johnson, e sua principal característica é "Adds pinyin captions above Chinese Hanzi script".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Pinyin Reader

Baixe arquivos de extensão Pinyin Reader 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

                        Adds captions above all Chinese text on a website.

Supports the following annotation styles:
* Hanyu Pinyin with tone marks
* Cantonese Jyutping with tone numbers
* Tone marks only (for both Pinyin and Jyutping)                    

Informações Básicas da Extensão

Nome Pinyin Reader Pinyin Reader
ID hledmlpbeiablkglomlminfemnepgjlp
URL Oficial https://chromewebstore.google.com/detail/pinyin-reader/hledmlpbeiablkglomlminfemnepgjlp
Descrição Adds pinyin captions above Chinese Hanzi script
Tamanho do Arquivo 6.02 MB
Contagem de Instalações 2,841
Versão Atual 1.4.1
Última Atualização 2018-10-30
Data de Publicação 2018-10-29
Classificação 4.92/5 Total de 13 Avaliações
Desenvolvedor Brendan Johnson
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinyin Reader",
    "version": "1.4.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js",
            "lib\/chinese-tokenizer.js",
            "lib\/sprintf.js"
        ],
        "persistent": false
    },
    "browser_action": [],
    "description": "Adds pinyin captions above Chinese Hanzi script",
    "icons": {
        "48": "img\/icon_active_48.png",
        "128": "img\/icon_128.png"
    },
    "options_ui": {
        "page": "options_page\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "commands": {
        "toggle-pinyin": {
            "suggested_key": {
                "default": "Alt+Shift+F",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle Pinyin"
        }
    }
}