Video Downloader for FaceBook

Video Downloader for FaceBook

Download video from Facebook. Download embed Fb video from any webpage with title. Fast and easy video download.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "0.4.5",
  "default_locale": "en",
  "icons": {
    "16": "i/icon_16.png",
    "256": "i/icon_256.png"
  },
  "action": {
    "default_icon": {
      "16": "i/icon_16.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self' 'wasm-unsafe-eval';"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "downloads",
    "offscreen"
  ],
  "host_permissions": [
    "https://*.facebook.com/*",
    "https://*.fbcdn.net/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "img/*",
        "fonts/*"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ]
    }
  ]
}