Video Downloader for Vimeo

Video Downloader for Vimeo

Now you can download any video from vimeo.com in a single click. Can also download embedded video.

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": "1.2",
  "default_locale": "en",
  "icons": {
    "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_script.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/*",
        "*://embed.vhx.tv/*"
      ],
      "js": [
        "js/content_script.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ]
}