Vaam Video

Vaam Video

Revamp your B2B game with Vaam – the ultimate game-changer in sales and customer engagement. Say goodbye to the usual drill and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vaam Video",
  "background": {
    "page": "background.html"
  },
  "commands": {
    "toggle-recording": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      },
      "description": "Pause/resume recording"
    },
    "finish-recording": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Finish recording"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+R",
        "mac": "Alt+Shift+R"
      }
    },
    "toggle-large-camera": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "mac": "Alt+Shift+C"
      },
      "description": "Toggle large camera"
    }
  },
  "externally_connectable": {
    "matches": [
      "*://*.vaam.io/*",
      "*://mail.google.com/*",
      "*://*.linkedin.com/*",
      "https://app.zaplify.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail.bundle.js"
      ]
    },
    {
      "matches": [
        "https://app.hubspot.com/*"
      ],
      "js": [
        "hubspot.bundle.js"
      ]
    },
    {
      "matches": [
        "https://app.salesloft.com/*"
      ],
      "js": [
        "salesloft.bundle.js"
      ]
    },
    {
      "matches": [
        "https://power.upsales.com/*"
      ],
      "js": [
        "upsales.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.force.com/*"
      ],
      "js": [
        "salesforce.bundle.js"
      ]
    },
    {
      "matches": [
        "https://app.cling.se/*"
      ],
      "js": [
        "cling.bundle.js"
      ]
    },
    {
      "matches": [
        "https://linkedin.com/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "linkedin.bundle.js"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "github.bundle.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "activeTab",
    "cookies",
    "desktopCapture",
    "tabCapture",
    "*://*.vaam.io/"
  ],
  "browser_action": {
    "default_icon": "assets/images/icon128.png",
    "default_title": "Vaam",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "web_accessible_resources": [
    "assets/*",
    "get-device-access.html",
    "cam-view.html",
    "audio-visualizer.html",
    "embed.html"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src https://storage.googleapis.com;",
  "version": "1.77.1"
}