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
公式URL 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
Eメール [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\/*"
            ]
        }
    ]
}