Download Instagram videos

Download Instagram videos

Download Instagram Videos, Reels Videos, Photos, Stories and IGTV Videos from your Instagram account or any public one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "Download Instagram Videos",
  "version": "1.0.3",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "64": "img/logo64.png",
    "128": "img/logo128.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "analytics.js",
      "function.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.pbion.com/*"
      ],
      "js": [
        "pbion.js"
      ]
    },
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "css": [
        "player.css"
      ],
      "js": [
        "parse.js",
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/logo16.png",
      "48": "img/logo48.png",
      "64": "img/logo64.png",
      "128": "img/logo128.png"
    },
    "default_title": "Instagram Downloader",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://suggestqueries.google.com/*",
    "https://*.pbion.com/*",
    "https://*.instagram.com/*",
    "https://*.fbcdn.net/*",
    "https://*.cdninstagram.com/*"
  ],
  "web_accessible_resources": [
    "img/*.svg",
    "parse.js",
    "player.css"
  ]
}