INSSAVE - App for Instagram

INSSAVE - App for Instagram

Run desktop version Instagram with all functions just like a mobile app. Download Instagram videos, photos, reels, IG stories.

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__",
  "default_locale": "en",
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "action": {
    "default_icon": "img/64.png",
    "default_title": "__MSG_name__"
  },
  "background": {
    "service_worker": "js/bg.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/ua.js"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "css/content.css",
        "css/shareModal.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/video/download.js",
        "js/shareModal.js",
        "js/video/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "downloads",
    "system.display",
    "declarativeNetRequest"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "version": "1.5.0"
}