Livebot.App - Kick Followers Synchronizer
Consume websocket messages from Kick.com and forward them to livebot.app
Qu'est-ce que Livebot.App - Kick Followers Synchronizer ?
Livebot.App - Kick Followers Synchronizer est une extension Chrome développée par vncntdtech, et sa fonction principale est "Consume websocket messages from Kick.com and forward them to livebot.app".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Livebot.App - Kick Followers Synchronizer
Téléchargez les fichiers d'extension Livebot.App - Kick Followers Synchronizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Livebot.App - Kick Followers Synchronizer |
ID | kpgabghojnolfnkpgnmmlnckglehmhci |
URL Officiel | https://chromewebstore.google.com/detail/livebotapp-kick-followers/kpgabghojnolfnkpgnmmlnckglehmhci |
Description | Consume websocket messages from Kick.com and forward them to livebot.app |
Taille du Fichier | 25.78 KB |
Nombre d'Installations | 12,004 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2023-01-31 |
Date de Publication | 2023-01-10 |
Évaluation | 2.64/5 Total 11 Évaluations |
Développeur | vncntdtech |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.livebot.app |
Langues Prises en Charge | 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\/*" ] } ] } |