Wen Mang

Plays audio of selected Chinese text

什么是Wen Mang?

Wen Mang是由jillianzhong开发的Chrome扩展程序,该扩展的主要功能是“Plays audio of selected Chinese text”。

扩展截图

screenshot

下载Wen Mang扩展crx文件

下载Wen Mang扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}