Webcam Preview

Webcam Preview

Shows web camera preview on top of any https site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Webcam Preview",
  "version": "1.0.2",
  "default_locale": "en",
  "description": "Shows web camera preview on top of any https site.",
  "author": "Vladimir Dupelev",
  "icons": {
    "128": "res/128.png"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "res/bar-icon.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*"
  ]
}