Livebot.App - Kick Followers Synchronizer

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

什麼是Livebot.App - Kick Followers Synchronizer?

Livebot.App - Kick Followers Synchronizer是由vncntdtech開發的Chrome擴展程式,該擴展的主要功能是“Consume websocket messages from Kick.com and forward them to livebot.app”。

擴展截圖

screenshot

下載Livebot.App - Kick Followers Synchronizer擴展crx文件

下載Livebot.App - Kick Followers Synchronizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The extension is a bridge between the website Kick.com and Livebot.app.
Kick.com is a new streaming platform and Livebot.app is a bot (similarly to streamelements, botissimo...) which objective is to improve the experience for the streamers and viewers. Trying to do this objective, we are working together with the kick.com team in order to know when a new viewer follows a channel.
Unfortunately, for the moment and due to problems of load, the website kick.com is only able to push those events on websocket using private channels, so we created an extension that is listening to the websocket events and is pushing the events to our backend.

On a technical point of view, the extension is very simple, just listening to the events that we are interested by on some specific pages and forwarding them using HTTP.
We tried to limit the pages and events we are listening to.                    

擴展基本資訊

名稱 Livebot.App - Kick Followers Synchronizer Livebot.App - Kick Followers Synchronizer
ID kpgabghojnolfnkpgnmmlnckglehmhci
官方網址 https://chromewebstore.google.com/detail/livebotapp-kick-followers/kpgabghojnolfnkpgnmmlnckglehmhci
簡介 Consume websocket messages from Kick.com and forward them to livebot.app
檔案大小 25.78 KB
安裝次數 12,004
目前版本 1.3
更新時間 2023-01-31
上架時間 2023-01-10
評分 2.64/5 共 11 次評分
開發者 vncntdtech
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.livebot.app
支援的語言 en
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\/*"
            ]
        }
    ]
}