WebSocket Test Client
A Simple tool to help test WebSocket Service
What is WebSocket Test Client?
WebSocket Test Client is a Chrome extension developed by Rage App, and its main feature is "A Simple tool to help test WebSocket Service".
Extension Screenshots
Download WebSocket Test Client Extension CRX File
Download WebSocket Test Client extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
WebSocket Test Client can be used to help construct custom WebSocket requests and handle responses to directly test your WebSocket services. 1. Enter the URL of your Web Socket server. 2. Click Open. 3. Input request text, then click Send. 4. The Log shows response messages.
Extension Basic Information
Name | |
ID | fgponpodhbmadfljofbimhhlengambbn |
Official URL | https://chromewebstore.google.com/detail/websocket-test-client/fgponpodhbmadfljofbimhhlengambbn |
Description | A Simple tool to help test WebSocket Service |
File Size | 129 KB |
Installation Count | 85,474 |
Current Version | 0.2.1 |
Last Updated | 2023-12-05 |
Publish Date | 2017-12-14 |
Rating | 4.52/5 Total 27 Ratings |
Developer | Rage App |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/aar0u/WebSocket-Test-Client |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebSocket Test Client", "short_name": "wstest", "manifest_version": 3, "version": "0.2.1", "description": "A Simple tool to help test WebSocket Service", "icons": { "16": "resources\/icon_032.png", "32": "resources\/icon_032.png", "48": "resources\/icon_048.png", "128": "resources\/icon_128.png" }, "browser_action": { "default_icon": "resources\/icon_032.png" }, "options_page": "index.html", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ] } |