VimDown | Video Downloader for vimeo.com

VimDown | Video Downloader for vimeo.com

Download video from vimeo.com in a single click. Also you can download embedded vimeo video from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "0.2.3",
  "default_locale": "en",
  "icons": {
    "16": "img/icon_16.png",
    "128": "img/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/icon_16.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self' 'wasm-unsafe-eval';"
  },
  "permissions": [
    "storage",
    "webRequest",
    "tabs",
    "downloads",
    "offscreen"
  ],
  "host_permissions": [
    "*://*.vimeo.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "img/*",
        "fonts/*"
      ],
      "matches": [
        "https://*.vimeo.com/*"
      ]
    }
  ]
}