EasySpeak

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

Qu'est-ce que EasySpeak ?

EasySpeak est une extension Chrome développée par jsbbvk, et sa fonction principale est "This extension will allow users to speak into the website, a new way to interact.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension EasySpeak 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

                        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)                    

Informations de Base sur l'Extension

Nom EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
URL Officiel https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Description This extension will allow users to speak into the website, a new way to interact.
Taille du Fichier 149 KB
Nombre d'Installations 11
Version Actuelle 1.5
Dernière Mise à Jour 2018-04-26
Date de Publication 2018-04-25
Évaluation 3.00/5 Total 4 Évaluations
Développeur jsbbvk
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}