Screen Recording Plus

Screen Recording Plus

Record your desktop. Mix with microphone and webcam.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "__MSG_app_name__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' blob: 'unsafe-eval' https://www.google-analytics.com https://www.googletagmanager.com https://*.googleapis.com; object-src 'self';",
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "manifest_version": 2,
  "minimum_chrome_version": "6.0",
  "name": "__MSG_app_name__",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "desktopCapture",
    "tabCapture",
    "downloads",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "0.9.10",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}