Downloader - VK Media Saver

Downloader - VK Media Saver

Saving music from VK has become easy! Download your favorite tracks and videos easily and conveniently

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__",
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "permissions": [
    "downloads"
  ],
  "icons": {
    "16": "assets/icons/icon-16.png",
    "19": "assets/icons/icon-19.png",
    "38": "assets/icons/icon-38.png",
    "128": "assets/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "inject.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "web-accessible-resources/*",
        "background.js",
        "content-scripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "version": "1.0.1"
}