Hermes WebSocket Client

A modern client for testing WebSocket connections.

Vad är Hermes WebSocket Client?

Hermes WebSocket Client är en Chrome-tillägg utvecklad av James Hohman, och dess huvudfunktion är "A modern client for testing WebSocket connections.".

Tilläggsskärmbilder

screenshot

Ladda ner Hermes WebSocket Client-förlängningens CRX-fil

Ladda ner Hermes WebSocket Client-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension is a WebSocket client that helps developers easily test and debug WebSocket connections.

Features:

* A real-time log of the past 20 JSON messages including client messages, server response, and server acks.
* Can connect to WebSocket namespaces.
* Can subscribe to multiple WebSocket events.
* Can publish events to the server with JSON payload.
* A Socket.io client implementation.
* A nice, modern interface powered by React, FontAwesome, and Bootstrap.
* Connection status prominently displayed.                    

Grundläggande Information om Tillägg

Namn Hermes WebSocket Client Hermes WebSocket Client
ID heiclpadccjamigpdpfpbdkcfnglcjgc
Officiell webbadress https://chromewebstore.google.com/detail/hermes-websocket-client/heiclpadccjamigpdpfpbdkcfnglcjgc
Beskrivning A modern client for testing WebSocket connections.
Filstorlek 496 KB
Antal Installationer 1,295
Aktuell Version 0.1.1
Senast Uppdaterad 2018-09-08
Publiceringsdatum 2018-09-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare James Hohman
Betalningssätt free
Tilläggswebbplats https://hohmanjl.wordpress.com/code/websockets-hermes-websocket-client/
Hjälpsida URL https://hohmanjl.wordpress.com/code/websockets-hermes-websocket-client/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Hermes",
    "name": "Hermes WebSocket Client ",
    "version": "0.1.1",
    "description": "A modern client for testing WebSocket connections.",
    "background": {
        "scripts": [
            "hermes.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Hermes WebSocket Client "
    },
    "manifest_version": 2,
    "icons": {
        "16": "\/static\/icons\/wings_16x16.png",
        "32": "\/static\/icons\/wings_32x32.png",
        "64": "\/static\/icons\/wings_64x64.png",
        "128": "\/static\/icons\/wings_128x128.png",
        "256": "\/static\/icons\/wings_256x256.png"
    }
}