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