Video downloader for YouTube

Video downloader for YouTube

Looking for youtube video downloader? Install the Video downloader for YouTube and download video from YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.0.5",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "downloads",
    "tabs",
    "webRequest",
    "webNavigation",
    "storage",
    "scripting",
    "alarms"
  ],
  "background": {
    "service_worker": "js/bg.js"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}