Smart Websocket Client
A Debugging tool to help you test Websocket APIs
Smart Websocket Clientคืออะไร?
Smart Websocket Client เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Luo Gang และคุณลักษณะหลักของมันคือ "A Debugging tool to help you test Websocket APIs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smart Websocket Client
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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": [] } |