SoftwareHow Facebook Photo Downloader

SoftwareHow Facebook Photo Downloader

Download and save all your Facebook photos to your computer. It works with photos from your friends' profiles too!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SoftwareHow Facebook Photo Downloader",
  "version": "2.0",
  "description": "Download and save all your Facebook photos to your computer. It works with photos from your friends' profiles too!",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "img/photo-downloader-logo-16.png",
    "48": "img/photo-downloader-logo-48.png",
    "128": "img/photo-downloader-logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/*"
      ],
      "js": [
        "./dist/bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "action": {
    "default_icon": "img/photo-downloader-logo-128.png",
    "default_title": "SoftwareHow Facebook Photo Downloader",
    "default_popup": "index.html"
  },
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "img/photo-downloader-logo-48.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}