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…

Co to jest Speak?

Speak to rozszerzenie Chrome opracowane przez imjasonh, a jego główną funkcją jest „Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…”.

Pobierz plik CRX rozszerzenia Speak

Pobierz pliki rozszerzeń Speak w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Speak Speak
ID fdifnkjkobihiiogmkcfmlffdjbipfpn
Oficjalny URL https://chromewebstore.google.com/detail/speak/fdifnkjkobihiiogmkcfmlffdjbipfpn
Opis Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…
Rozmiar pliku 5.7 KB
Liczba instalacji 68
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2017-05-15
Data Publikacji 2017-05-15
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper imjasonh
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}