VK Downloader

VK Downloader

Download music, video, playlists, stories, photoalbums, gifs from vk.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "VK Downloader",
  "version": "1.59",
  "author": "DreamDream",
  "manifest_version": 2,
  "description": "__MSG_extensionDescription__",
  "web_accessible_resources": [
    "data/*.png"
  ],
  "default_locale": "en",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "downloads",
    "cookies",
    "notifications",
    "tabs",
    "https://*.vkuseraudio.net/*",
    "https://*.vkuservideo.net/*",
    "https://*.userapi.com/*",
    "https://*.discogs.com/*",
    "https://*.deezer.com/*",
    "https://*.vk.com/*"
  ],
  "icons": {
    "128": "icons/icon.png"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "background": {
    "scripts": [
      "./options/browser-polyfill.min.js",
      "./background_scripts/xml-entities.js",
      "./background_scripts/browser-id3-writer.js",
      "./background_scripts/index.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://vk.com/*"
      ],
      "js": [
        "./options/browser-polyfill.min.js",
        "./content_scripts/index.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    },
    {
      "matches": [
        "https://m.vk.com/*"
      ],
      "js": [
        "./options/browser-polyfill.min.js",
        "./content_scripts/mobile.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}