Instagram Easy Download

Instagram Easy Download

1-Click to download all instagram photos and video HD.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Instagram Easy Download",
  "version": "0.0.6",
  "description": "1-Click to download all instagram photos and video HD.",
  "author": "Taufik Nur Rahmanda",
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "action": {
    "default_title": "Open a Instagram post to download its photos and video",
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon24.png",
      "32": "icons/icon32.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "foreground.js"
      ]
    }
  ]
}