Web Socket Client

A tool for manual web socket testing.

什么是Web Socket Client?

Web Socket Client是由mschurr开发的Chrome扩展程序,该扩展的主要功能是“A tool for manual web socket testing.”。

扩展截图

screenshot

下载Web Socket Client扩展crx文件

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

扩展使用说明

                        A simple in-browser web socket client UI. This extension is primarily intended for use by web developers looking for an easy way to test web socket endpoints as they develop.

To use this extension, click the 'WS Client' icon that appears to the right of your address bar or click 'Options' for this extension in 'chrome://extensions'.

Requires no permissions.

Source Code & Issue Tracker: 
https://github.com/mschurr/chrome-web-socket-client                    

扩展基本信息

名称 Web Socket Client Web Socket Client
ID lifhekgaodigcpmnakfhaaaboididbdn
官方URL https://chromewebstore.google.com/detail/web-socket-client/lifhekgaodigcpmnakfhaaaboididbdn
简介 A tool for manual web socket testing.
文件大小 41.06 KB
安装次数 9,698
当前版本 1.0.0
更新时间 2021-07-25
上架时间 2017-02-01
评分 4.25/5 共12次评分
开发者 mschurr
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mschurr/chrome-web-socket-client
帮助页面URL https://github.com/mschurr/chrome-web-socket-client
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Socket Client",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "A tool for manual web socket testing.",
    "icons": {
        "16": "icon_128.png",
        "32": "icon_128.png",
        "48": "icon_128.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_128.png"
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}