Smart Websocket Client

A Debugging tool to help you test Websocket APIs

Cos'è Smart Websocket Client?

Smart Websocket Client è un'estensione di Chrome sviluppata da Luo Gang, e la sua funzione principale è "A Debugging tool to help you test Websocket APIs".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Smart Websocket Client

Scarica i file di estensione Smart Websocket 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Smart Websocket Client Smart Websocket Client
ID omalebghpgejjiaoknljcfmglgbpocdp
URL Ufficiale https://chromewebstore.google.com/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp
Descrizione A Debugging tool to help you test Websocket APIs
Dimensione del File 261 KB
Conteggio Installazioni 42,457
Versione Corrente 1.0.0
Ultimo Aggiornamento 2016-01-22
Data di Pubblicazione 2015-09-22
Valutazione 3.90/5 Totale 41 Valutazioni
Sviluppatore Luo Gang
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/crysislinux/smart_websocket_client
Lingue Supportate 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": []
}