Wen Mang

Plays audio of selected Chinese text

O que é Wen Mang?

Wen Mang é uma extensão do Chrome desenvolvida por jillianzhong, e sua principal característica é "Plays audio of selected Chinese text".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Wen Mang

Baixe arquivos de extensão Wen Mang 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

                        Are you part of the Chinese diaspora that grew up speaking Mandarin with your family but can now barely read any Chinese characters? Don't worry, you can now still shop on Taobao or read articles sent to you from WeChat relatives!
Just use Wen Mang extension to easily have Chinese characters read out loud to you in Mandarin. Wen Mang extension will only read what characters you have highlighted in the browser. After highlighting text, simply right-click and select the extension icon from the drop down menu. Or, click the extension icon at the top right of your browser.

Please refresh the page after installation.                    

Informações Básicas da Extensão

Nome Wen Mang Wen Mang
ID gpndfjlcnlgdihjaoomphnjngddoeiik
URL Oficial https://chromewebstore.google.com/detail/wen-mang/gpndfjlcnlgdihjaoomphnjngddoeiik
Descrição Plays audio of selected Chinese text
Tamanho do Arquivo 33.12 KB
Contagem de Instalações 60
Versão Atual 0.2
Última Atualização 2020-07-05
Data de Publicação 2020-07-04
Classificação 1.00/5 Total de 3 Avaliações
Desenvolvedor jillianzhong
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jirrian/wen-mang
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wen Mang",
    "manifest_version": 2,
    "version": "0.2",
    "description": "Plays audio of selected Chinese text",
    "browser_action": {
        "default_icon": "support-128.png",
        "default_title": "Wen Mang - Play audio of selected text!"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "responsivevoice.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "icons": {
        "128": "support-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}