HD Video Downloader

HD Video Downloader

Chrome app to download any video. HD Video Downloader powers up Chrome browser with download utility for the most video formats

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "short_name": "__MSG_name__",
  "background": {
    "service_worker": "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"
      ],
      "all_frames": false
    }
  ],
  "action": {
    "default_icon": {
      "32": "icons/icon32.png",
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "downloads",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "2.2.2"
}