Ascii Camera Capture Example

Ascii Camera Capture Example

A simple application that accesses the video device and converts the images to ascii characters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Ascii Camera Capture Example",
  "version": "1",
  "manifest_version": 2,
  "icons": {
    "16": "web/camera.png",
    "128": "web/camera.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "audioCapture",
    "videoCapture"
  ]
}