Web Client for Instagram™ - Sidegram

Web Client for Instagram™ - Sidegram

Run web client for Instagram™ just like your favorite mobile app. Download videos and images, upload your own content, and send DM.

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_desc__",
  "default_locale": "en",
  "version": "2.0.8",
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "content-sidebar.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "instagram-content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "downloads",
    "sidePanel",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "assets/icons/128.png"
  },
  "icons": {
    "32": "assets/icons/32.png",
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png"
  },
  "commands": {
    "open-sidebar": {
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "windows": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Open Sidebar"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}