Cybershot

Cybershot

Maximize Instagram leads like a pro! Chrome extension offers auto-reactions, comments, messaging, and more! 🚀

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cybershot",
  "version": "1.10.57",
  "description": "Maximize Instagram leads like a pro! Chrome extension offers auto-reactions, comments, messaging, and more! 🚀",
  "manifest_version": 3,
  "incognito": "split",
  "icons": {
    "128": "assets/icons/icon.png"
  },
  "action": {
    "default_icon": "assets/icons/icon.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "scripting",
    "clipboardRead",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "scripts/external-integration.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "https://www.instagram.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://www.instagram.com/*",
    "https://app.lebot.io/*"
  ]
}