MyoBrowser
A content script that lets you interact with web pages via the Myo armband, Myo sold separately
Qu'est-ce que MyoBrowser ?
MyoBrowser est une extension Chrome développée par James Talbert, et sa fonction principale est "A content script that lets you interact with web pages via the Myo armband, Myo sold separately".
Télécharger le fichier CRX de l'extension MyoBrowser
Téléchargez les fichiers d'extension MyoBrowser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Currently in beta. This application will allow you to control your browser with the Myo armband. Before use, perform the setup gesture to enable page navigation and fast scrolling. Scrolling takes some practice, I hope to be able to upload a video at some point. Instructions: (It will take some practice) Scroll down: Lower your arm, accelerating slowly, the quickly accelerate up and float back up. Scroll up: Same as down, just backwards. Make a fist to start scrolling faster, spread your fingers to scroll slower. Zoom (toggle): Punch the air (not your screen). Refresh: Flip your arm over quickly. Forward: Flick your hand inward (toward chest); Back: Flick your hand outward.
Informations de Base sur l'Extension
Nom | |
ID | iilkebcagnlgpfngbocafgofpilgklbl |
URL Officiel | https://chrome.google.com/webstore/detail/myobrowser/iilkebcagnlgpfngbocafgofpilgklbl |
Description | A content script that lets you interact with web pages via the Myo armband, Myo sold separately |
Taille du Fichier | 12.46 KB |
Nombre d'Installations | 38 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2014-09-15 |
Date de Publication | 2014-09-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | James Talbert |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyoBrowser", "description": "A content script that lets you interact with web pages via the Myo armband, Myo sold separately", "version": "2.0", "permissions": [ "*:\/\/*\/*", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "myo.js", "myo.experimental.js", "content_script.js", "myoScroll.js" ] } ], "web_accessible_resources": [ "myoScroll.js" ], "background": { "scripts": [ "background.js" ] } } |