orange

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

Was ist orange?

orange ist eine Chrome-Erweiterung, die von https://baileymckelway.com entwickelt wurde, und ihr Hauptmerkmal ist "Google Chrome Extension that uses voice recognition to record and control webpages.".

Erweiterungsscreenshots

orange-Erweiterungs-CRX-Datei herunterladen

Laden Sie orange-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name orange orange
ID ibamdegelmgihmnlomabhfkomnpdfjmc
Offizielle URL https://chromewebstore.google.com/detail/orange/ibamdegelmgihmnlomabhfkomnpdfjmc
Beschreibung Google Chrome Extension that uses voice recognition to record and control webpages.
Dateigröße 41.15 KB
Installationsanzahl 79
Aktuelle Version 2.0
Letztes Update 2020-07-06
Veröffentlichungsdatum 2020-06-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://baileymckelway.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://baileymckelway.com/
Unterstützte Sprachen 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"
    ]
}