Instagram Downloader

Instagram Downloader

Download stories, videos, reels, IGTVs in one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Open Instagram"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/downloader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "name": "__MSG_title__",
  "icons": {
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "permissions": [
    "http://instagram.com/",
    "<all_urls>",
    "storage",
    "https://instagram.com/",
    "downloads",
    "tabs"
  ],
  "short_name": "Downloader for Instagram",
  "version": "1.2.0",
  "web_accessible_resources": [
    "/images/icon_download.svg"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}