vk Video Downloader

vk Video Downloader

Download vk videos in best quality with one simple click.

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__",
  "version": "1.0.2",
  "default_locale": "en",
  "description": "__MSG_desc__",
  "action": {},
  "permissions": [
    "storage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://vk.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*.png",
        "desktop-injection.*",
        "pay.html"
      ],
      "matches": [
        "https://vk.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icons/128.png"
  }
}