App Client for Instagram™ - InLoad

App Client for Instagram™ - InLoad

Download photos, videos, stories, Reels from Instagram for free. Schedule posts on Instagram, fast save IGTV.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "INLoad",
  "default_locale": "en",
  "version": "1.0.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "worker.js"
  },
  "icons": {
    "32": "img/logo.png",
    "64": "img/logo.png",
    "128": "img/logo.png",
    "256": "img/logo.png"
  },
  "action": {
    "default_icon": {
      "32": "img/logo.png",
      "64": "img/logo.png",
      "128": "img/logo.png",
      "256": "img/logo.png"
    },
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "js": [
        "data/change.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "css": [
        "assets/popup.css",
        "assets/rate.css",
        "assets/theme.css"
      ],
      "js": [
        "data/libs/jquery.js",
        "data/content.js",
        "data/rate.js",
        "data/change.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "data/listenerLink.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "downloads",
    "system.display",
    "declarativeNetRequest"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*",
        "data/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}