Captain X for Instagram

Captain X for Instagram

Chat on PC or Mac with Captain X for Instagram Web and Direct. Get notifications of new messages without opening Instagram site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.5",
  "browser_action": {
    "default_title": "__MSG_openApp__",
    "default_icon": {
      "19": "/16.png",
      "38": "/32.png"
    }
  },
  "icons": {
    "16": "/16.png",
    "48": "/64.png",
    "128": "/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/direct/inbox/any"
      ],
      "js": [
        "script.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "notification.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ]
}