Awesome Video Recorder

Awesome Video Recorder

Record your camera, full screen or tabs with audio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Awesome Video Recorder",
  "short_name": "Video Recorder",
  "description": "Record your camera, full screen or tabs with audio.",
  "version": "1.4",
  "author": "Ravi Shukla",
  "browser_action": {
    "default_icon": "dist/image/logo.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "dist/image/logo.png",
    "32": "dist/image/logo.png",
    "48": "dist/image/logo.png",
    "128": "dist/image/logo.png"
  },
  "oauth2": {
    "client_id": "856992244474-9vm8eo0d5n6akukcr14hj7en1ioh72rh.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive"
    ]
  },
  "background": {
    "scripts": [
      "dist/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "dist/js/contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "optional_permissions": [
    "activeTab",
    "webNavigation"
  ],
  "permissions": [
    "storage",
    "alarms",
    "identity",
    "notifications",
    "unlimitedStorage",
    "desktopCapture",
    "system.cpu",
    "system.memory",
    "tabs",
    "tabCapture",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://*.google-analytics.com https://*.google.com; object-src 'self'",
  "minimum_chrome_version": "49"
}