Video Downloader for Web

Video Downloader for Web

Popular and one of the best Video Downloader in Web Store. Saves popular media formats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.9",
  "short_name": "__MSG_short_name__",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/jquery-3.1.1.min.js",
        "/js/contentscript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "*://*/*",
    "activeTab",
    "downloads"
  ],
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": "images/logo_not.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "images/logo.png"
  },
  "web_accessible_resources": [
    "*"
  ],
  "manifest_version": 2
}