Wen Mang

Plays audio of selected Chinese text

Cos'è Wen Mang?

Wen Mang è un'estensione di Chrome sviluppata da jillianzhong, e la sua funzione principale è "Plays audio of selected Chinese text".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Wen Mang

Scarica i file di estensione Wen Mang in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Wen Mang Wen Mang
ID gpndfjlcnlgdihjaoomphnjngddoeiik
URL Ufficiale https://chromewebstore.google.com/detail/wen-mang/gpndfjlcnlgdihjaoomphnjngddoeiik
Descrizione Plays audio of selected Chinese text
Dimensione del File 33.12 KB
Conteggio Installazioni 60
Versione Corrente 0.2
Ultimo Aggiornamento 2020-07-05
Data di Pubblicazione 2020-07-04
Valutazione 1.00/5 Totale 3 Valutazioni
Sviluppatore jillianzhong
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jirrian/wen-mang
Lingue Supportate 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'"
}