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.”。
擴展截圖
下載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 |
ID | lifhekgaodigcpmnakfhaaaboididbdn |
官方網址 | 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" ] } } |