VK Save - music downloader

VK Save - music downloader

Fast download any audio recordings from Vk. Upload music to VK 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",
  "manifest_version": 3,
  "version": "1.2.4",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "name": "__MSG_name__",
  "default_locale": "en",
  "description": "__MSG_description__",
  "background": {
    "service_worker": "js/worker.js"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "styles/content.css",
        "styles/rateUsHelper.css"
      ],
      "js": [
        "js/helper.js",
        "js/jquery.js",
        "js/rateUsHelper.js"
      ],
      "matches": [
        "https://vk.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "css/*"
      ],
      "matches": [
        "https://vk.com/*",
        "https://vk.ru/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}