Music Downloader - VKsaver

Saving music from VK has become easy! Download your favorite tracks by checking their bitrates and sizes.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "version": "1.0.1",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "homepage_url": "https://vk.com/audio?section=all",
  "default_locale": "en",
  "background": {
    "service_worker": "js/bg.js"
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://vk.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "css/*"
      ],
      "matches": [
        "https://vk.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "css": [
        "css/popup.css",
        "css/shareModal.css"
      ],
      "js": [
        "js/inject.js",
        "libs/jquery.js",
        "libs/shareModal.js"
      ],
      "matches": [
        "https://vk.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "img/logo.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}