EasySpeak

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

EasySpeak là gì?

EasySpeak là một tiện ích mở rộng Chrome được phát triển bởi jsbbvk, và tính năng chính của nó là "This extension will allow users to speak into the website, a new way to interact.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng EasySpeak

Tải xuống các tệp mở rộng EasySpeak dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
URL Chính Thức https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Mô tả This extension will allow users to speak into the website, a new way to interact.
Kích Thước Tệp 149 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2018-04-26
Ngày Phát Hành 2018-04-25
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jsbbvk
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}