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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}