Video Downloader Chrome

Video Downloader Chrome

Video Downloader Chrome is supporting to download any videos when browsing websites via chrome extension in different resolutions!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Downloader Chrome",
  "version": "1.0.1",
  "description": "Video Downloader Chrome is supporting to download any videos when browsing websites via chrome extension in different resolutions!",
  "permissions": [
    "webRequest",
    "tabs",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "icons": {
    "16": "images/16x16.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "manifest_version": 2
}