PoVim | Video Downloader for Vimeo

PoVim | Video Downloader for Vimeo

Download tool for saving video from Vimeo. Vimeo Downloader saves any video to your PC in one click and best resolution

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__",
  "default_locale": "en",
  "version": "2.1",
  "background": {
    "service_worker": "js/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.vimeo.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/app.js",
        "js/ffmpeg-mp4.js"
      ],
      "css": [
        "css/download-style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": "icons/58.png"
  },
  "permissions": [
    "downloads",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/icons/*"
      ],
      "matches": [
        "https://*.vimeo.com/*"
      ]
    }
  ]
}