Web Client For Instagram™ - InstaPlus

Web Client For Instagram™ - InstaPlus

Access Instagram content freely: photos, videos, Reels; schedule posts, save IGTV - effortlessly!

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",
  "version": "1.1.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "128": "icons/logo.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/logo.png"
    },
    "default_title": "__MSG_name__"
  },
  "options_page": "./options.html",
  "content_scripts": [
    {
      "js": [
        "scripts/onChangeWidth.js",
        "scripts/dmScript.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "css": [
        "css/popup.css",
        "css/theme.css"
      ],
      "js": [
        "scripts/libs/jquery.js",
        "js/content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "*://www.instagram.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "cookies",
    "system.display",
    "tabs",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*.instagram.com/*",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/images/*",
        "scripts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}