EasySpeak

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

什麼是EasySpeak?

EasySpeak是由jsbbvk開發的Chrome擴展程式,該擴展的主要功能是“This extension will allow users to speak into the website, a new way to interact.”。

擴展截圖

screenshot

下載EasySpeak擴展crx文件

下載EasySpeak擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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)                    

擴展基本資訊

名稱 EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
官方網址 https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
簡介 This extension will allow users to speak into the website, a new way to interact.
檔案大小 149 KB
安裝次數 11
目前版本 1.5
更新時間 2018-04-26
上架時間 2018-04-25
評分 3.00/5 共 4 次評分
開發者 jsbbvk
付費類型 free
支援的語言 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"
            ]
        }
    ]
}