Video & Screen Recorder for Work - Drift

Video & Screen Recorder for Work - Drift

Record video, screen, or both. Track views and chat live while they watch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Video & Screen Recorder for Work - Drift",
  "short_name": "Drift Video",
  "description": "Record video, screen, or both. Track views and chat live while they watch.",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "images/drift-extension-icon-48x48.png",
    "128": "images/drift-extension-icon-128x128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "clipboardWrite",
    "scripting",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "facecam.html",
        "permissions.html",
        "recorder.html",
        "*.png",
        "*.svg",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extensions": []
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.driftqa.com/*",
      "*://*.drift.com/*",
      "*://localhost:*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.linkedin.com/*"
      ],
      "js": [
        "contentscriptLinkedIn.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://app.salesloft.com/*"
      ],
      "js": [
        "contentscriptSalesloft.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.outreach.io/*"
      ],
      "js": [
        "contentscriptOutreach.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://mail.google.com/mail/*",
        "https://inbox.google.com/"
      ],
      "js": [
        "contentscriptGmail.js"
      ],
      "run_at": "document_end"
    }
  ],
  "version": "6.2.0"
}