Video Downloader

Video Downloader

The fastest and easiest way to save any video from Web Browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.0.2",
  "manifest_version": 3,
  "icons": {
    "16": "/img/icon-16.png",
    "48": "/img/icon-48.png",
    "128": "/img/icon-128.png"
  },
  "permissions": [
    "webRequest",
    "downloads",
    "tabs"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_title": "__MSG_appName__",
    "default_icon": "/img/icon-24.png",
    "default_popup": "/ui/popup.html"
  },
  "homepage_url": "https://video-downloader.freeonlineapps.net/"
}