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…

Cos'è Speak?

Speak è un'estensione di Chrome sviluppata da imjasonh, e la sua funzione principale è "Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…".

Scarica il file CRX dell'estensione Speak

Scarica i file di estensione Speak in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Speak Speak
ID fdifnkjkobihiiogmkcfmlffdjbipfpn
URL Ufficiale https://chromewebstore.google.com/detail/speak/fdifnkjkobihiiogmkcfmlffdjbipfpn
Descrizione Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…
Dimensione del File 5.7 KB
Conteggio Installazioni 68
Versione Corrente 0.0.1
Ultimo Aggiornamento 2017-05-15
Data di Pubblicazione 2017-05-15
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore imjasonh
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
    }
}