Social Video Downloader

Social Video Downloader

Social Video Downloader - Download Videos directly from Facebook ™ in HD quality with one simple click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "version": "20.4.2021.1",
  "icons": {
    "16": "i/icon_16.png",
    "32": "i/icon_32.png",
    "48": "i/icon_48.png",
    "64": "i/icon_64.png",
    "128": "i/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "short_name": "Facebook video Downloader",
  "description": "__MSG_ext_description__",
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "downloads",
    "https://*.facebook.com/*",
    "https://*.fbcdn.net/*"
  ]
}