Instagram™ Mobile -Download stories and reels

Instagram™ Mobile -Download stories and reels

Download photos, videos, stories, and reels from Instagram™

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__",
  "version": "1.0.6",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon48.png",
    "default_title": "__MSG_name__",
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.js",
        "*.png",
        "img/icon-download.png",
        "frame.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "setting.js"
      ]
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "css": [
        "css/index.css"
      ],
      "js": [
        "src/utils/crypto-js.min.js",
        "src/utils/customAlert.js",
        "src/utils/preload.js",
        "src/download/button-constructor.js",
        "src/download/download-by-url.js",
        "src/items/post-image.js",
        "src/items/post-video.js",
        "src/items/story-image.js",
        "src/items/story-video.js",
        "src/utils/get-file-name.js",
        "src/utils/get-info.js",
        "src/watchers/watchers.js",
        "src/main.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "background",
    "scripting",
    "storage",
    "downloads"
  ],
  "host_permissions": [
    "*://*.instagram.com/*"
  ]
}