Instagram Downloader

Instagram Downloader

Download media from Instagram

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "Instagram Downloader",
  "description": "Download media from Instagram",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": {
      "19": "icons/insta.jpg",
      "38": "icons/insta.jpg"
    }
  },
  "icons": {
    "16": "icons/insta.jpg",
    "48": "icons/insta.jpg",
    "128": "icons/insta.jpg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "http://www.instagram.com/*",
    "https://www.instagram.com/*"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}