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
官方網址 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'"
}