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