Browser WebSocket Client

Connect to a WebSocket server to send and receive raw JSON messages.

O que é Browser WebSocket Client?

Browser WebSocket Client é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Connect to a WebSocket server to send and receive raw JSON messages.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Browser WebSocket Client

Baixe arquivos de extensão Browser 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

                        Browser WebSocket Client is an extension for Chrome and Firefox that provides a simple method for testing a WebSocket server. It allows you to send and receive raw JSON messages as well as save server URLs, protocols, and messages for later use.

Advantages
Intuitive Bootstrap 4 user interface
Save server URLs, protocols, and messages for later use
Login to Chrome or Mozilla and your saved settings will be synced across different devices
Pretty-print incoming JSON messages and saved message bodies
Export and import the plugin settings so you can easily backup and share them with colleges                    

Informações Básicas da Extensão

Nome Browser WebSocket Client Browser WebSocket Client
ID mdmlhchldhfnfnkfmljgeinlffmdgkjo
URL Oficial https://chromewebstore.google.com/detail/browser-websocket-client/mdmlhchldhfnfnkfmljgeinlffmdgkjo
Descrição Connect to a WebSocket server to send and receive raw JSON messages.
Tamanho do Arquivo 568 KB
Contagem de Instalações 10,000
Versão Atual 1.4.2
Última Atualização 2020-03-10
Data de Publicação 2020-03-08
Classificação 4.43/5 Total de 14 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/abeade/browser-websocket-client
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Browser WebSocket Client",
    "manifest_version": 2,
    "version": "1.4.2",
    "description": "Connect to a WebSocket server to send and receive raw JSON messages.",
    "icons": {
        "16": "icon_016.png",
        "32": "icon_032.png",
        "48": "icon_048.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_032.png",
        "default_title": "Browser WebSocket Client"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "storage",
        "activeTab",
        "downloads"
    ],
    "options_page": "index.html#options"
}