Speak

Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…

Speak क्या है?

Speak imjasonh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…"।

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

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

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

                        Simple extension to speak selected text, using Chrome's built-in TTS engine.

Right-click a selection of text to read it. Or press ctrl+shift+space to start/stop reading.                    

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

नाम Speak Speak
ID fdifnkjkobihiiogmkcfmlffdjbipfpn
आधिकारिक URL https://chromewebstore.google.com/detail/speak/fdifnkjkobihiiogmkcfmlffdjbipfpn
विवरण Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…
फ़ाइल का आकार 5.7 KB
स्थापना संख्या 68
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2017-05-15
प्रकाशन तिथि 2017-05-15
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर imjasonh
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speak",
    "version": "0.0.1",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "tts",
        ""
    ],
    "icons": {
        "16": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "startstop": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            },
            "description": "Start\/stop reading"
        },
        "faster": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period"
            },
            "description": "Increase speed"
        },
        "slower": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma"
            },
            "description": "Decrease speed"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}