Smart Websocket Client

A Debugging tool to help you test Websocket APIs

What is Smart Websocket Client?

Smart Websocket Client is a Chrome extension developed by Luo Gang, and its main feature is "A Debugging tool to help you test Websocket APIs".

Extension Screenshots

screenshot

Download Smart Websocket Client Extension CRX File

Download Smart Websocket 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

                        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.                    

Extension Basic Information

Name Smart Websocket Client Smart Websocket Client
ID omalebghpgejjiaoknljcfmglgbpocdp
Official URL https://chromewebstore.google.com/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp
Description A Debugging tool to help you test Websocket APIs
File Size 261 KB
Installation Count 42,457
Current Version 1.0.0
Last Updated 2016-01-22
Publish Date 2015-09-22
Rating 3.90/5 Total 41 Ratings
Developer Luo Gang
Payment Type free
Help Page URL https://github.com/crysislinux/smart_websocket_client
Supported Languages 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": []
}