Media download helper

Media download helper

Easily download video, audio from any website. Please keep the app updated to get new features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self';  object-src 'self'",
  "name": "Media download helper",
  "description": "Easily download video, audio from any website. Please keep the app updated to get new features.",
  "version": "3.0.4",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "64": "64.png",
    "128": "128.png"
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "webRequestBlocking",
    "webRequest",
    "downloads"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "function.js",
      "analytics.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "download.png",
    "default_title": "Media download helper",
    "default_popup": "popup.html"
  }
}