Music Downloader - VKsaver

Music Downloader - VKsaver

Saving music from VK has become easy! Download your favorite tracks by checking their bitrates and sizes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "homepage_url": "https://vk.com/audio?section=all",
  "default_locale": "en",
  "background": {
    "service_worker": "scripts/service-worker.js"
  },
  "icons": {
    "128": "assets/img/logo.png"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "css/*"
      ],
      "matches": [
        "https://vk.com/*",
        "https://vk.ru/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "css": [
        "assets/content.css",
        "assets/rate-us.css"
      ],
      "js": [
        "scripts/inject.js",
        "scripts/libs/jquery.js",
        "scripts/libs/rate-us.js"
      ],
      "matches": [
        "https://vk.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}