ZED: Zoom Easy Downloader

ZED: Zoom Easy Downloader

The fastest and easiest way to download any video from the Zoom platform. Finally, you can now download all to your computer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Zoomcorder",
  "description": "The fastest and easiest way to download any video from the Zoom platform. Finally, you can now download all to your computer!",
  "manifest_version": 3,
  "name": "ZED: Zoom Easy Downloader",
  "version": "10.0",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png",
    "1024": "icons/1024.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/record.png",
        "/images/recimage.png",
        "/images/howto.jpg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png",
      "256": "icons/256.png",
      "512": "icons/512.png",
      "1024": "icons/1024.png"
    },
    "default_title": "Zoom Easy Downloader",
    "default_popup": "/pages/about/about.html"
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}