Downloader for Instagram

Downloader for Instagram

Download photo, video and stories from Instagram. Convenient app to review instagram direct messages or news feed. Instagram…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "img/*",
    "css/*"
  ],
  "name": "__MSG_extName__",
  "default_locale": "en",
  "icons": {
    "128": "img/icons/icon-128.png"
  },
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "version": "1.4",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.instagram.com/*"
      ],
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/libs/jquery.min.js",
        "js/content/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/content/instaLinkListener.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "img/icons/icon-128.png"
    }
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "downloads"
  ]
}