Live video recorder

Live video recorder

Record live stream!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.7",
  "manifest_version": 2,
  "description": "__MSG_appDesc__",
  "author": "Yohan Galerneau",
  "default_locale": "en",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "contextMenus",
    "downloads"
  ],
  "background": {
    "scripts": [
      "script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}