Video Downloader Handy

Video Downloader Handy

Download your favorite videos and store them locally. Very handy!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "extension/background.html"
  },
  "browser_action": {
    "default_icon": "icon19c.png",
    "default_title": "Video Downloader Handy"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "video/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "options_page": "startpage/index.html?options=1",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "downloads",
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "short_name": "VDP",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.5"
}