Wen Mang

Plays audio of selected Chinese text

Wen Mang란 무엇입니까?

Wen Mang은(는) jillianzhong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plays audio of selected Chinese text"입니다.

확장 프로그램 스크린샷

screenshot

Wen Mang 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Wen Mang Wen Mang
ID gpndfjlcnlgdihjaoomphnjngddoeiik
공식 URL https://chromewebstore.google.com/detail/wen-mang/gpndfjlcnlgdihjaoomphnjngddoeiik
설명 Plays audio of selected Chinese text
파일 크기 33.12 KB
설치 횟수 60
현재 버전 0.2
최근 업데이트 2020-07-05
출시 날짜 2020-07-04
평점 1.00/5 총 3 개의 평점
개발자 jillianzhong
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jirrian/wen-mang
지원되는 언어 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'"
}