EasySpeak

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

Apa itu EasySpeak?

EasySpeak adalah ekstensi Chrome yang dikembangkan oleh jsbbvk, dan fitur utamanya adalah "This extension will allow users to speak into the website, a new way to interact.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi EasySpeak

Unduh file ekstensi EasySpeak 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

                        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)                    

Informasi Dasar Ekstensi

Nama EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
URL Resmi https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Deskripsi This extension will allow users to speak into the website, a new way to interact.
Ukuran File 149 KB
Jumlah Instalasi 11
Versi Saat Ini 1.5
Terakhir Diperbarui 2018-04-26
Tanggal Publikasi 2018-04-25
Penilaian 3.00/5 Total 4 Penilaian
Pengembang jsbbvk
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}