Chat Pro

Chat Pro

A Social Media Marketing Manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A Social Media Marketing Manager",
  "version": "7.6.2",
  "manifest_version": 3,
  "name": "Chat Pro",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1NGIcY/HlkGVEKAkfg14ZzdCEMZ8GwNhnq4yeGrpb1FPw1qYJX391fW/eJwZ0JYEWAKGF8G8puXuuaOTZvHuxryetdYlFgcodeucd0Ydu9sjzopg/bE36gYtnVdfoIP5a1/OpMC8F89qW64ws2rP5VhYjl4/cB0IyVViIoZdfx+mqe9Ob/QI16aMuhOb0Q9Cck6O5e7FGk2nj/W69Tx7VyGGLR2+/ppqf7pRXBVYGMovVZk40sMShOHr7qFrPkV9z0VYrjFsNY4aBb+gqy/mgs7W84Oaa8e6COF9/sKpWCanEg3Sdn/Flvrj1HT52LeE4x7giHPXhk/wQ0mul6PJvwIDAQAB",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "chatPro_icon.png"
  },
  "icons": {
    "128": "chatPro_icon.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "identity",
    "identity.email",
    "alarms",
    "notifications",
    "scripting",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*.facebook.com/*",
    "https://www.messenger.com/*",
    "https://app.chatpro.io/*",
    "https://www.instagram.com/*",
    "http://localhost:3000/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://web.facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "all_frames": true,
      "js": [
        "scanPosts.bundle.js"
      ],
      "css": [
        "scanPosts.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://web.facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "all_frames": true,
      "js": [
        "fetchProfile.bundle.js"
      ],
      "css": [
        "scanPosts.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://localhost:3000/dashboard",
        "http://app.chatpro.io/dashboard",
        "https://app.chatpro.io/dashboard"
      ],
      "all_frames": true,
      "js": [
        "dashboardScript.bundle.js"
      ],
      "css": [
        "scanPosts.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "all_frames": true,
      "js": [
        "groupMembers.bundle.js"
      ],
      "css": [
        "groupMembers.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.messenger.com/*",
        "https://*.facebook.com/messages/*"
      ],
      "all_frames": true,
      "js": [
        "messenger.bundle.js"
      ],
      "css": [
        "messenger.css"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "http://app.chatpro.io/*",
      "http://socialninja.sceptermarketing.com/*",
      "http://localhost:3000/*",
      "https://app.chatpro.io/*"
    ],
    "accepts_tls_channel_id": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "chatPro_icon.png",
        "pipeline.svg"
      ],
      "matches": [
        "*://*.facebook.com/*",
        "https://www.messenger.com/*",
        "https://app.chatpro.io/*",
        "https://www.instagram.com/*"
      ]
    }
  ]
}