Video Downloader Online

Video Downloader Online

Best video downloader app in the Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "2.2",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject/contentscript.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "downloads",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": "images/download_inactive.png",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "128": "images/logo.png"
  },
  "web_accessible_resources": [
    "*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}