gSpeak

Speak the selection or webpage content.

gSpeak क्या है?

gSpeak Sandip Chitale द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Speak the selection or webpage content."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में gSpeak एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
}