gSpeak

Speak the selection or webpage content.

什麼是gSpeak?

gSpeak是由Sandip Chitale開發的Chrome擴展程式,該擴展的主要功能是“Speak the selection or webpage content.”。

擴展截圖

screenshot

下載gSpeak擴展crx文件

下載gSpeak擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Click on the Speak button in the toolbar to speak the text selection in the webpage. If there is no text selection in the webpage, the webpage content is spoken. While the speech is in progress, the badge on the button shows the remaining percentage of the text to be spoken. Clicking on the button pauses the speech. Once paused, if you click on the button within one second the speech is cancelled. After one second, clicking on the button resumes the speech.

Some voices may not support the event to indicate a word was spoken. Therefore it may not be possible to show the remaining percentage badge. Choose a different voice using options.                    

擴展基本資訊

名稱 gSpeak gSpeak
ID ceeodfklkbgkhcnfglgkidpoookifcbd
官方網址 https://chrome.google.com/webstore/detail/gspeak/ceeodfklkbgkhcnfglgkidpoookifcbd
簡介 Speak the selection or webpage content.
檔案大小 24.76 KB
安裝次數 235
目前版本 1.0
更新時間 2014-12-17
上架時間 2014-12-17
評分 3.11/5 共 9 次評分
開發者 Sandip Chitale
電子郵箱 [email protected]
付費類型 free
擴展官網 http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html
說明頁面URL http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html
支援的語言 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gSpeak",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Speak the selection or webpage content.",
    "icons": {
        "16": "play.png",
        "48": "play48.png",
        "128": "play128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "Speak",
        "default_icon": "play.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "tts",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "minimum_chrome_version": "14"
}