Speak Selection

Speaks the current selection out loud.

什么是Speak Selection?

Speak Selection是由Pjanda开发的Chrome扩展程序,该扩展的主要功能是“Speaks the current selection out loud.”。

扩展截图

screenshot

下载Speak Selection扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Speak Selection Speak Selection
ID jiinpfgcngkgalkhmkkanaacpkmgkedm
官方URL https://chrome.google.com/webstore/detail/speak-selection/jiinpfgcngkgalkhmkkanaacpkmgkedm
简介 Speaks the current selection out loud.
文件大小 54.52 KB
安装次数 62
当前版本 1.1
更新时间 2017-04-12
上架时间 2017-04-12
评分 5.00/5 共2次评分
开发者 Pjanda
付费类型 free
支持的语言 nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Selection",
    "version": "1.1",
    "description": "Speaks the current selection out loud.",
    "permissions": [
        "",
        "tts",
        "tabs"
    ],
    "background": {
        "scripts": [
            "keycodes.js",
            "tabs.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "SpeakSel19.png",
        "default_title": "Speak Selection"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "14",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "keycodes.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "SpeakSel16.png",
        "48": "SpeakSel48.png",
        "128": "SpeakSel128.png",
        "256": "SpeakSel256.png"
    },
    "manifest_version": 2
}