Bulk Downloader for Instagram™

Bulk Downloader for Instagram™

Downloads a backup of Instagram™ media

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bulk Downloader for Instagram™",
  "description": "Downloads a backup of Instagram™ media",
  "version": "1.0.0",
  "background": {
    "service_worker": "js/checkLicense.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "js/zip.js",
        "js/z-worker.js",
        "js/deflate.js",
        "js/patch-worker.js",
        "js/FileSaver.js",
        "js/moment.js"
      ],
      "css": [
        "css/custom.css",
        "css/spinkit.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*.instagram.com/",
    "https://*.cdninstagram.com/",
    "https://*.fbcdn.net/",
    "https://*.fbsbx.com/",
    "https://chatsavers.org/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/z-worker.js",
        "js/deflate.js",
        "js/patch-worker.js",
        "js/FileSaver.js",
        "css/custom.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.instagram.com/*"
    ]
  },
  "icons": {
    "128": "imgs/128.png"
  }
}