Web Socket Client

A tool for manual web socket testing.

Web Socket Clientคืออะไร?

Web Socket Client เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mschurr และคุณลักษณะหลักของมันคือ "A tool for manual web socket testing."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Socket Client

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}