AudioRecorder

AudioRecorder

Record audio, and then save as a wav file. This is an (almost) exact replica of AudioRecorder: http://webaudiodemos.appspot.com/.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AudioRecorder",
  "short_name": "AudioRecorder",
  "description": "Record audio, and then save as a wav file. This is an (almost) exact replica of AudioRecorder: http://webaudiodemos.appspot.com/.",
  "version": "0.12",
  "manifest_version": 2,
  "offline_enabled": true,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "icons": {
    "16": "mic-16.png",
    "128": "mic-128.png"
  },
  "permissions": [
    "audioCapture"
  ]
}