Tube Video Downloader

Tube Video Downloader

Download video online from any website fast and easily. Tube Video Downloader allows to save video and watch it later

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "6.0.2",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "action": {
    "default_icon": "img/logo.png",
    "default_title": "__MSG_title__",
    "default_popup": "/popup.html"
  },
  "icons": {
    "128": "img/logo.png"
  },
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/libs/jquery-3.2.1.min.js",
        "js/libs/tools.js",
        "js/vp/abstract.js",
        "js/vp/fb.js",
        "js/vp/tw.js",
        "js/vp/dm.js",
        "js/vp/in.js",
        "js/vp/xx.js",
        "js/app.js",
        "js/content.js"
      ],
      "css": [
        "/css/btns.css",
        "/css/app.css",
        "/css/sidebar.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "downloads",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}