Video Downloader Social

Video Downloader Social

Video downloader free extension for social networks save online videos such as m3u8, live streams, mp4, hls, etc.

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_description__",
  "short_name": "__MSG_short_name__",
  "default_locale": "en",
  "version": "0.0.4",
  "manifest_version": 3,
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "icons/logo-no-active.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "128": "icons/logo-active.png"
  },
  "background": {
    "service_worker": "js/worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/libs/jquery-3.2.1.min.js",
        "js/content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "webRequest",
    "storage",
    "activeTab",
    "downloads",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}