Web Socket Client

A tool for manual web socket testing.

Cos'è Web Socket Client?

Web Socket Client è un'estensione di Chrome sviluppata da mschurr, e la sua funzione principale è "A tool for manual web socket testing.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Web Socket Client

Scarica i file di estensione Web Socket Client in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Web Socket Client Web Socket Client
ID lifhekgaodigcpmnakfhaaaboididbdn
URL Ufficiale https://chromewebstore.google.com/detail/web-socket-client/lifhekgaodigcpmnakfhaaaboididbdn
Descrizione A tool for manual web socket testing.
Dimensione del File 41.06 KB
Conteggio Installazioni 9,698
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-07-25
Data di Pubblicazione 2017-02-01
Valutazione 4.25/5 Totale 12 Valutazioni
Sviluppatore mschurr
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mschurr/chrome-web-socket-client
URL della Pagina di Aiuto https://github.com/mschurr/chrome-web-socket-client
Lingue Supportate 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"
        ]
    }
}