Free Music Downloader

Free Music Downloader

Download your favorite music tracks from any websites in just one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "32": "images/32.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "browser_action": {
    "default_icon": "images/64.png",
    "default_title": "Music-downloader",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/lib/grafy.js",
      "js/lib/analytics.js",
      "js/lib/jquery-3.1.1.min.js",
      "js/lib/tools.js",
      "js/conf.js",
      "js/find-music.js",
      "js/bg/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/lib/jquery-3.1.1.min.js",
        "js/lib/tools.js",
        "js/lib/md5.min.js",
        "js/conf.js",
        "js/app.js",
        "js/find-music.js",
        "js/pr/abstr-pr.js",
        "js/lib/grafy.js"
      ],
      "css": [
        "styles/app.css",
        "styles/sb.css",
        "styles/content.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/lib/analytics.js"
      ]
    },
    {
      "matches": [
        "*://*.deezer.com/*"
      ],
      "js": [
        "js/pr/deezer-pr.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.spotify.com/*"
      ],
      "js": [
        "js/pr/spotify-pr.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://my.mail.ru/*"
      ],
      "js": [
        "js/pr/mailru-pr.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://music.yandex.ru/*",
        "*://music.yandex.ua/*"
      ],
      "js": [
        "js/pr/yandex-pr.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://vk.com/*"
      ],
      "js": [
        "js/pr/vk-pr.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/cont/content.js",
        "js/pr/xx.js",
        "js/pr/video-pr.js"
      ],
      "css": [
        "styles/app.css",
        "styles/sb.css",
        "styles/content.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://google-analytics.com; https://play.google.com; object-src 'self'",
  "manifest_version": 2,
  "permissions": [
    "downloads",
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "version": "1.5"
}