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
Eメール [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"
        ]
    }
}