orange

Google Chrome Extension that uses voice recognition to record and control webpages.

什么是orange?

orange是由https://baileymckelway.com开发的Chrome扩展程序,该扩展的主要功能是“Google Chrome Extension that uses voice recognition to record and control webpages.”。

扩展截图

下载orange扩展crx文件

下载orange扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        orange allows you to record events on a webpage, like a button click, and control those events using voice commands.    

Instructions:

Microphone
You need to allow Chrome to use your microphone for this extension
Right click on the orange icon on your browser
Click "Options" This will open a new window
A microphone icon will appear in your URL, click it
Allow microphone for orange chrome extension

Record Commands
Click "Record" in the dropdown menu
Recordable buttons will be highlighted in orange
Click button you want to record
Once pop up menu appears click "OK" and say single command word.

View Commands
By clicking "Commands" in the dropdown menu you can see commands you have previously recorded.

Start and Stop
By clicking "Start" orange will turn your microphone on and start listening for commands
When you say "orange" wait for the sound effect and then say the command
By clicking "Stop" orange turn your microphone off and stop listening.

Tips
Some command words work better then others.
Some buttons will need multiple commands. For example the Play and Pause buttons would need seperate commands. One for play and the other for pause.                    

扩展基本信息

名称 orange orange
ID ibamdegelmgihmnlomabhfkomnpdfjmc
官方URL https://chromewebstore.google.com/detail/orange/ibamdegelmgihmnlomabhfkomnpdfjmc
简介 Google Chrome Extension that uses voice recognition to record and control webpages.
文件大小 41.15 KB
安装次数 79
当前版本 2.0
更新时间 2020-07-06
上架时间 2020-06-24
评分 5.00/5 共1次评分
开发者 https://baileymckelway.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://baileymckelway.com/
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "orange",
    "description": "Google Chrome Extension that uses voice recognition to record and control webpages.",
    "manifest_version": 2,
    "version": "2.0",
    "icons": {
        "128": "img\/orange.png"
    },
    "offline_enabled": false,
    "browser_action": {
        "default_icon": "img\/orange.png",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "permission.html",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "",
        "activeTab",
        "tabCapture"
    ]
}