1 Video Downloader

1 Video Downloader

Download video online from any websites fast and easily. 1 free Video Downloader allows to save video and watch it later

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "short_name": "__MSG_title__",
  "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",
        "./styles/button.css"
      ],
      "all_frames": false
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "js": [
        "./static/js/yt.js"
      ],
      "all_frames": false
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon_16.png",
      "32": "icons/icon_32.png",
      "48": "icons/icon_48.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "storage",
    "downloads",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "1.0.28",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}