Claap - Meeting & Screen Recording

Claap - Meeting & Screen Recording

Summarize meetings on Google Meet 50x faster, record & edit short videos in seconds, and centralize all your video knowledge.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Claap - Meeting & Screen Recording",
  "version": "0.771.0",
  "short_name": "Claap",
  "description": "Summarize meetings on Google Meet 50x faster, record & edit short videos in seconds, and centralize all your video knowledge.",
  "manifest_version": 2,
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage",
    "desktopCapture",
    "tabCapture"
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "web_accessible_resources": [
    "*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.claap.io/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.claap.io/*"
      ],
      "js": [
        "appContentScript.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "competitorsContentScript.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.github.com/*",
        "https://app.asana.com/*",
        "https://app.clickup.com/*",
        "https://sharing.clickup.com/*",
        "https://*.linear.app/*",
        "https://*.trello.com/*",
        "https://*.atlassian.net/*",
        "https://*.gitlab.com/*",
        "https://mail.google.com/*",
        "https://meet.google.com/*",
        "https://docs.google.com/*",
        "https://calendar.google.com/*"
      ],
      "js": [
        "embedContentScript.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "public/brand/claap-ico-16.png",
      "32": "public/brand/claap-ico-32.png",
      "48": "public/brand/claap-ico-48.png",
      "64": "public/brand/claap-ico-64.png",
      "128": "public/brand/claap-ico-128.png",
      "256": "public/brand/claap-ico-256.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      }
    }
  },
  "icons": {
    "16": "public/brand/claap-ico-16.png",
    "32": "public/brand/claap-ico-32.png",
    "48": "public/brand/claap-ico-48.png",
    "64": "public/brand/claap-ico-64.png",
    "128": "public/brand/claap-ico-128.png",
    "256": "public/brand/claap-ico-256.png"
  }
}