Wen Mang

Plays audio of selected Chinese text

Co to jest Wen Mang?

Wen Mang to rozszerzenie Chrome opracowane przez jillianzhong, a jego główną funkcją jest „Plays audio of selected Chinese text”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Wen Mang

Pobierz pliki rozszerzeń Wen Mang 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wen Mang Wen Mang
ID gpndfjlcnlgdihjaoomphnjngddoeiik
Oficjalny URL https://chromewebstore.google.com/detail/wen-mang/gpndfjlcnlgdihjaoomphnjngddoeiik
Opis Plays audio of selected Chinese text
Rozmiar pliku 33.12 KB
Liczba instalacji 60
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2020-07-05
Data Publikacji 2020-07-04
Ocena 1.00/5 Łącznie 3 Oceny
Deweloper jillianzhong
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jirrian/wen-mang
Obsługiwane Języki 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'"
}