WQRI Recorder

WQRI Recorder

This program is built to record audio from audio streams on the WQRI website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WQRI Recorder",
  "description": "This program is built to record audio from audio streams on the WQRI website.",
  "version": "3.0.1",
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "WQRI Recorder"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js",
      "worker.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabCapture",
    "downloads",
    "storage"
  ],
  "commands": {
    "start": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+U"
      },
      "description": "Start Recording"
    },
    "stop": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "MacCtrl+Shift+X"
      },
      "description": "Stop Recording"
    }
  }
}