Downloader for Instagram

Downloader for Instagram

Convenient app to review direct messages or news feed as well as save favourite video or image.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "img/icons/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/ig-story.css"
      ],
      "js": [
        "js/libs/jquery.min.js",
        "js/content/ig-story.js"
      ],
      "matches": [
        "*://ig-story.net/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/content/userAgentChanger.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/libs/jquery.min.js",
        "js/content/content.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "js/content/instaLinkListener.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "128": "img/icons/icon-128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "downloads"
  ],
  "version": "1.0.3",
  "web_accessible_resources": [
    "img/*",
    "css/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}