Smart Websocket Client

A Debugging tool to help you test Websocket APIs

什么是Smart Websocket Client?

Smart Websocket Client是由Luo Gang开发的Chrome扩展程序,该扩展的主要功能是“A Debugging tool to help you test Websocket APIs”。

扩展截图

screenshot

下载Smart Websocket Client扩展crx文件

下载Smart Websocket Client扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Smart Websocket Client Smart Websocket Client
ID omalebghpgejjiaoknljcfmglgbpocdp
官方URL https://chromewebstore.google.com/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp
简介 A Debugging tool to help you test Websocket APIs
文件大小 261 KB
安装次数 42,457
当前版本 1.0.0
更新时间 2016-01-22
上架时间 2015-09-22
评分 3.90/5 共41次评分
开发者 Luo Gang
付费类型 free
帮助页面URL https://github.com/crysislinux/smart_websocket_client
支持的语言 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": []
}