Chromyo

Chromyo

Control your Chrome browser using the Thalmic Myo!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chromyo",
  "description": "Control your Chrome browser using the Thalmic Myo!",
  "version": "0.7.3",
  "permissions": [
    "<all_urls>",
    "tabs",
    "topSites",
    "storage"
  ],
  "browser_action": {
    "default_icon": "img/locked.png"
  },
  "options_page": "config.html",
  "icons": {
    "48": "img/logo.png"
  },
  "background": {
    "scripts": [
      "js/browserModes.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/foreground.js"
      ]
    }
  ]
}