Mass. Downloader for Instagram

Mass. Downloader for Instagram

Download all Stories, Photo, Video, Reels.

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__",
  "default_locale": "en",
  "version": "1.2.7",
  "background": {
    "service_worker": "/js/bg.js"
  },
  "permissions": [
    "webRequest",
    "cookies",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "/js/app.js"
      ],
      "css": [
        "/css/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "/icons/icon_128.png"
  },
  "action": {
    "default_icon": "/icons/icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/font/*",
        "/icons/*"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ]
}