ClipFlip

ClipFlip

Camera & desktop recording

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ClipFlip",
  "description": "Camera & desktop recording",
  "version": "2.5.7.60809",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "allFrames": false,
      "js": [
        "injectable.bundle.js"
      ]
    }
  ],
  "commands": {
    "pauseResume": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Pause or Resume"
    }
  },
  "icons": {
    "128": "./icons/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "activeTab",
    "cookies",
    "desktopCapture",
    "tabCapture",
    "webRequest",
    "offscreen",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "./icons/icon16.png",
      "24": "./icons/icon24.png",
      "32": "./icons/icon32.png"
    }
  },
  "externally_connectable": {
    "matches": [
      "https://app.stage.clipflip.com/*",
      "https://app.clipflip.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "*.css",
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}