Web Socket Client

A tool for manual web socket testing.

Co to jest Web Socket Client?

Web Socket Client to rozszerzenie Chrome opracowane przez mschurr, a jego główną funkcją jest „A tool for manual web socket testing.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Web Socket Client

Pobierz pliki rozszerzeń Web Socket 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

                        A simple in-browser web socket client UI. This extension is primarily intended for use by web developers looking for an easy way to test web socket endpoints as they develop.

To use this extension, click the 'WS Client' icon that appears to the right of your address bar or click 'Options' for this extension in 'chrome://extensions'.

Requires no permissions.

Source Code & Issue Tracker: 
https://github.com/mschurr/chrome-web-socket-client                    

Podstawowe informacje o rozszerzeniu

Nazwa Web Socket Client Web Socket Client
ID lifhekgaodigcpmnakfhaaaboididbdn
Oficjalny URL https://chromewebstore.google.com/detail/web-socket-client/lifhekgaodigcpmnakfhaaaboididbdn
Opis A tool for manual web socket testing.
Rozmiar pliku 41.06 KB
Liczba instalacji 9,698
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-07-25
Data Publikacji 2017-02-01
Ocena 4.25/5 Łącznie 12 Oceny
Deweloper mschurr
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mschurr/chrome-web-socket-client
Adres URL Strony Pomocy https://github.com/mschurr/chrome-web-socket-client
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Socket Client",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "A tool for manual web socket testing.",
    "icons": {
        "16": "icon_128.png",
        "32": "icon_128.png",
        "48": "icon_128.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_128.png"
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}