Capture is all you need

Capture is all you need

Capture the tab or content on the tab in a various methods and save as video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_manifest_name__",
  "version": "1.1.0",
  "author": "[email protected]",
  "description": "__MSG_manifest_description__",
  "homepage_url": "https://www.capturables.com/",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "webRequest",
    "declarativeNetRequest",
    "tabs",
    "tabCapture",
    "desktopCapture",
    "scripting",
    "downloads",
    "offscreen",
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "64": "images/icon_normal_64_light.png"
    },
    "default_title": "__MSG_manifest_browser_action__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "match_origin_as_fallback": true,
      "exclude_matches": [
        "https://www.capturables.com/*process.html*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/overlay.css"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.capturables.com/*process.html*"
      ],
      "js": [
        "js/medium.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "icons": {
    "64": "images/icon_normal_64_light.png"
  }
}