Speak

Speak lets you use speech-to-text to provide live captions for presentations

Apa itu Speak?

Speak adalah ekstensi Chrome yang dikembangkan oleh charlie.a.gerard, dan fitur utamanya adalah "Speak lets you use speech-to-text to provide live captions for presentations".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Speak

Unduh file ekstensi Speak dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Speak is a Chrome extension using the Speech Recognition API to provide a speech-to-text interface as an overlay on a website.
The main goal is to allow people to make their presentations more accessible for the deaf and hard-of-hearing.

It currently works with mdx-deck, reveal.js and spectacle.                    

Informasi Dasar Ekstensi

Nama Speak Speak
ID kafbpkaodnkapgalobfodcpbioffcngc
URL Resmi https://chromewebstore.google.com/detail/speak/kafbpkaodnkapgalobfodcpbioffcngc
Deskripsi Speak lets you use speech-to-text to provide live captions for presentations
Ukuran File 19.16 KB
Jumlah Instalasi 888
Versi Saat Ini 4
Terakhir Diperbarui 2018-11-18
Tanggal Publikasi 2018-11-15
Penilaian 3.00/5 Total 1 Penilaian
Pengembang charlie.a.gerard
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/charliegerard/extension
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speak",
    "description": "Speak lets you use speech-to-text to provide live captions for presentations",
    "version": "4",
    "author": "Charlie Gerard",
    "short_name": "Speak",
    "browser_action": {
        "default_icon": "caption.png",
        "default_title": "Speak",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "caption16.png",
        "48": "caption48.png",
        "128": "caption128.png"
    },
    "minimum_chrome_version": "25",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ]
}