Hand in the Air

Hand in the Air

hand gesture recognition

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hand in the Air",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": " hand gesture recognition",
  "icons": {
    "16": "images/16x16.png",
    "128": "images/128x128.png"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "*://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/16x16.png",
      "48": "images/48x48.png"
    },
    "default_title": "hand in the air"
  },
  "web_accessible_resources": [
    "background.bundle.js.map",
    "content_script.bundle.js.map",
    "option.bundle.js.map",
    "popup.bundle.js.map"
  ],
  "options_page": "option.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.bundle.js"
      ],
      "run_at": "document_end"
    }
  ]
}