Free Video Downloader

Free Video Downloader

Video Downloader is a free and useful browser extension for downloading online videos

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "0.0.24",
  "action": {
    "default_icon": "img/icon64.png",
    "default_popup": "popup/popup.html",
    "default_title": "video downloader"
  },
  "icons": {
    "16": "img/icon16.png",
    "24": "img/icon24.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "webRequest",
    "downloads",
    "scripting",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pageScript.js",
        "vendor/ffmpeg-core.js",
        "vendor/ffmpeg-core.wasm",
        "vendor/ffmpeg-core.worker.js",
        "downloadDash.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}