Speak

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

Qu'est-ce que Speak ?

Speak est une extension Chrome développée par charlie.a.gerard, et sa fonction principale est "Speak lets you use speech-to-text to provide live captions for presentations".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Speak

Téléchargez les fichiers d'extension Speak au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Speak Speak
ID kafbpkaodnkapgalobfodcpbioffcngc
URL Officiel https://chromewebstore.google.com/detail/speak/kafbpkaodnkapgalobfodcpbioffcngc
Description Speak lets you use speech-to-text to provide live captions for presentations
Taille du Fichier 19.16 KB
Nombre d'Installations 888
Version Actuelle 4
Dernière Mise à Jour 2018-11-18
Date de Publication 2018-11-15
Évaluation 3.00/5 Total 1 Évaluations
Développeur charlie.a.gerard
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/charliegerard/extension
Langues Prises en Charge 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
        }
    ]
}