Video Downloader

Video Downloader

Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Downloader",
  "description": "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section",
  "version": "0.1.3",
  "manifest_version": 2,
  "icons": {
    "128": "download.png"
  },
  "permissions": [
    "<all_urls>",
    "downloads",
    "storage"
  ],
  "background": {
    "scripts": [
      "index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": true
    }
  ]
}