2be Live Recorder

2be Live Recorder

Capture and record live and broadcast sessions by saving them directly to your computer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "2be Live Recorder",
  "description": "Capture and record live and broadcast sessions by saving them directly to your computer.",
  "permissions": [
    "tabs",
    "storage",
    "tabCapture"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "icons": {
    "32": "icons/icon_32.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "2be Live Recorder",
    "default_icon": {
      "32": "icons/icon_32.png",
      "64": "icons/icon_64.png",
      "128": "icons/icon_128.png"
    }
  },
  "version": "0.1.1",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}