Video Downloader

Video Downloader

Download and save videos from any site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.9",
  "background": {
    "scripts": [
      "/app/static/Global.js",
      "/app/static/Door.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/app/static/jquery-3.5.1.js",
        "/app/static/Global.js",
        "/app/static/Broadcaster.js",
        "/app/static/Sniff.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": "/app/static/inactive_ex.png",
    "default_popup": "/app/static/video_list.html"
  },
  "icons": {
    "128": "/app/static/ex.png"
  },
  "manifest_version": 2
}