Speak Selection

Speaks the current selection out loud.

Speak Selection क्या है?

Speak Selection Pjanda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Speaks the current selection out loud."।

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

screenshot

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

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

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

                                            

एक्सटेंशन की मूल जानकारी

नाम 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
}