Image and Video Downloader

Image and Video Downloader

Save images and videos from Instagram.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Image and Video Downloader",
  "description": "Save images and videos from Instagram.",
  "version": "0.3.0",
  "manifest_version": 2,
  "homepage_url": "https://browsernative.com/instagram-downloader/",
  "icons": {
    "16": "static/icon-16.png",
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "contextMenus",
    "downloads"
  ],
  "browser_action": {
    "default_icon": "static/icon-128.png",
    "default_title": "Image and Video Downloader for Instagram"
  }
}