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.1.4",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "homepage_url": "https://vk.com/audio?section=all",
  "default_locale": "en",
  "background": {
    "service_worker": "js/bg.js"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "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"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/audioPopup.css"
      ],
      "js": [
        "js/audioPopup.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "img/logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "css/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}