PoseKey

PoseKey

A chrome extension that enables your poses to control browsers with a webcam

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PoseKey",
  "description": "A chrome extension that enables your poses to control browsers with a webcam",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "tabs",
    "identity",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "man-celebrating1.png",
    "default_title": "Posenet Chrome Extension",
    "default_popup": "popup/index.html"
  },
  "web_accessible_resources": [
    "option/index.html"
  ],
  "options_page": "option/index.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com; object-src 'self'"
}