Music Downloader

Music Downloader

Free download MP3 music from sites where you can listen to it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "short_name": "music-downloader",
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "2.1",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "permissions": [
    "webRequest",
    "tabs",
    "downloads",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/19.png",
    "default_popup": "main.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "128": "icons/128.png"
  }
}