Smart Websocket Client
A Debugging tool to help you test Websocket APIs
Co to jest Smart Websocket Client?
Smart Websocket Client to rozszerzenie Chrome opracowane przez Luo Gang, a jego główną funkcją jest „A Debugging tool to help you test Websocket APIs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Smart Websocket Client
Pobierz pliki rozszerzeń Smart Websocket Client w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Smart WebSocket Client is an extension for Google Chrome to help test your Web Socket services. 1. Enter the URL for your Web Socket server. 2. Click Connect. 3. Input request text, then click Send. 4. The extension show response messages. This project is under active development. Feel free to post issues on github.
Podstawowe informacje o rozszerzeniu
Nazwa | Smart Websocket Client |
ID | omalebghpgejjiaoknljcfmglgbpocdp |
Oficjalny URL | https://chromewebstore.google.com/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp |
Opis | A Debugging tool to help you test Websocket APIs |
Rozmiar pliku | 261 KB |
Liczba instalacji | 42,457 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2016-01-22 |
Data Publikacji | 2015-09-22 |
Ocena | 3.90/5 Łącznie 41 Oceny |
Deweloper | Luo Gang |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/crysislinux/smart_websocket_client |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smart Websocket Client", "description": "A Debugging tool to help you test Websocket APIs", "version": "1.0.0", "browser_action": { "default_icon": "logo.png", "default_title": "Click to start!" }, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [] } |