Screenshot & Screen Recorder w/ Webcam-Droplr

Screenshot & Screen Recorder w/ Webcam-Droplr

The Easiest All-In-One Screenshot & Screen Recorder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Screenshot & Screen Recorder w/ Webcam-Droplr",
  "version": "4.0.2",
  "description": "The Easiest All-In-One Screenshot & Screen Recorder",
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": "public/icon-48.png"
  },
  "icons": {
    "128": "public/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "public/*",
        "assets/*",
        "content/*"
      ],
      "matches": [
        "chrome-extension://*/*",
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "permissions": [
    "desktopCapture",
    "activeTab",
    "webRequest",
    "tabs",
    "activeTab",
    "scripting",
    "storage",
    "notifications",
    "clipboardWrite"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [],
      "run_at": "document_start",
      "all_frames": false
    }
  ]
}