Advanced WebSocket Client

Construct custom Web Socket requests and handle responses to directly test your Web Socket services.

O que é Advanced WebSocket Client?

Advanced WebSocket Client é uma extensão do Chrome desenvolvida por Alexandr Mekh, e sua principal característica é "Construct custom Web Socket requests and handle responses to directly test your Web Socket services.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Advanced WebSocket Client

Baixe arquivos de extensão Advanced WebSocket Client no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Advanced WebSocket Client is an extension for Google Chrome to help construct custom Web Socket requests and handle responses to directly test your Web Socket services.

It has been developed to support JSON request/response format and the main feature is that you don't have to format your request strictly as it required by the RFC - you may use either a single-quoted, double-quoted or no-quoted strings as a string keys and values as well as to use trailing commas in object literals.

Also, it supports code line/block comments in the same way as in JavaScript.

Shortcats:
    F1 - fullscreen on/off
    F2 - line wrapping on/off
    Ctrl-Alt-J - format JSON
    Ctrl-Q - fold/unfold a code block
    Ctrl-/ - comment/uncomment line/block                    

Informações Básicas da Extensão

Nome Advanced WebSocket Client Advanced WebSocket Client
ID lgimpnfdefcpkicbflpmainbcdnlblej
URL Oficial https://chromewebstore.google.com/detail/advanced-websocket-client/lgimpnfdefcpkicbflpmainbcdnlblej
Descrição Construct custom Web Socket requests and handle responses to directly test your Web Socket services.
Tamanho do Arquivo 227 KB
Contagem de Instalações 876
Versão Atual 1.0.1
Última Atualização 2020-11-28
Data de Publicação 2020-01-25
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Alexandr Mekh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mekh/advanced-websocket-client
URL da Página de Política de Privacidade https://github.com/mekh/advanced-websocket-client/blob/master/PRIVACY.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced WebSocket Client",
    "short_name": "WebSocket",
    "author": "Alexandr Mekh",
    "homepage_url": "https:\/\/github.com\/mekh\/advanced-websocket-client",
    "manifest_version": 2,
    "version": "1.0.1",
    "description": "Construct custom Web Socket requests and handle responses to directly test your Web Socket services.",
    "icons": {
        "16": "resources\/icon_016.png",
        "32": "resources\/icon_032.png",
        "48": "resources\/icon_048.png",
        "64": "resources\/icon_064.png",
        "128": "resources\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "resources\/icon_032.png",
            "64": "resources\/icon_064.png"
        }
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}