Video Downloader by 1qvid

Video Downloader by 1qvid is the best way to download video online.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "short_name": "__MSG_name__",
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "./static/js/app.js",
        "./static/js/content.js"
      ],
      "css": [
        "./static/css/app.css",
        "./styles/sidebar.css",
        "./styles/button.css"
      ],
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_16.png",
      "32": "icons/icon_32.png",
      "48": "icons/icon_48.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "*://*/*",
    "storage",
    "downloads",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "*"
  ],
  "version": "1.1.2"
}