Image Downloader

Image Downloader

Download videos, photos, stories

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_extDesc__",
  "version": "3.1.7",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules_set_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "downloads",
    "declarativeNetRequest",
    "https://www.instadownloader.app/*",
    "https://*.instagram.com/*",
    "https://*.fbcdn.net/*",
    "https://*.cdninstagram.com/*"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.instadownloader.app/*"
      ],
      "js": [
        "contentScript2.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_title": "__MSG_extName__"
  },
  "web_accessible_resources": [
    "iframeBridge.html"
  ]
}