EasySpeak

This extension will allow users to speak into the website, a new way to interact.

Was ist EasySpeak?

EasySpeak ist eine Chrome-Erweiterung, die von jsbbvk entwickelt wurde, und ihr Hauptmerkmal ist "This extension will allow users to speak into the website, a new way to interact.".

Erweiterungsscreenshots

screenshot

EasySpeak-Erweiterungs-CRX-Datei herunterladen

Laden Sie EasySpeak-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Visit our website: www.easyspeak.tech

This extension will allow you to transform your speech into text that is placed into text areas. 

Instuctions:
Simply select a text field and start the voice recognition to see the magic unfold. 

Commands:
 - 'clear slate'
 - 'delete word'
 - 'new paragraph'
 - "Open" + (valid url)
 - "Buy" + (item queries)
 - "Search" + (anything)
 - "Solve" + (anything)
 - "What is" + (anything)
 - "Play video" + (anything)                    

Grundlegende Informationen zur Erweiterung

Name EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
Offizielle URL https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Beschreibung This extension will allow users to speak into the website, a new way to interact.
Dateigröße 149 KB
Installationsanzahl 11
Aktuelle Version 1.5
Letztes Update 2018-04-26
Veröffentlichungsdatum 2018-04-25
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler jsbbvk
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EasySpeak",
    "description": "This extension will allow users to speak into the website, a new way to interact.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": [
        {
            "scripts": [
                "background.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ]
}