Downloader for Instagram

Downloader for Instagram

The app downloads Stories, Videos and Photos from Instagram website. Convenient mobile interface is available as an option

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "/instagram.png",
    "default_popup": "htmlFrames/directFrame.html"
  },
  "icons": {
    "128": "/instagram.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "cssStyles/addon.css",
        "cssStyles/addonDiv.css",
        "cssStyles/addonBody.css",
        "cssStyles/addonGrid.css"
      ],
      "js": [
        "js/common.js",
        "/jquery-2.1.3.min.js",
        "js/insta_addon_dom.js",
        "js/insta_addon.js"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ]
    },
    {
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "js/common.js",
        "js/insta_mobil_handler.js",
        "js/insta_mobil.js"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ]
    },
    {
      "css": [
        "cssStyles/searcherDiv.css",
        "cssStyles/searcherMainContainer.css",
        "cssStyles/searcherImageStyle.css",
        "cssStyles/searcherCommon.css"
      ],
      "js": [
        "js/common.js",
        "js/searcherContainer.js",
        "js/searcher.js"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.seolung.design; object-src 'self'",
  "web_accessible_resources": [
    "/*.png",
    "/*.html"
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/common.js",
      "js/shadowListener.js",
      "js/shadowRoot.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "downloads",
    "*://*.instagram.com/*",
    "webRequest",
    "webRequestBlocking",
    "contextMenus"
  ],
  "version": "1.0"
}