Livebot.App - Kick Followers Synchronizer

Livebot.App - Kick Followers Synchronizer

Consume websocket messages from Kick.com and forward them to livebot.app

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Livebot.App - Kick Followers Synchronizer",
  "description": "Consume websocket messages from Kick.com and forward them to livebot.app",
  "version": "1.3",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "content/syringe.js"
      ],
      "matches": [
        "https://kick.com/*",
        "https://www.kick.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/socket-sniffer.js"
      ],
      "matches": [
        "https://*.kick.com/*"
      ]
    }
  ]
}