Web Socket Client

A tool for manual web socket testing.

Web Socket Client क्या है?

Web Socket Client mschurr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool for manual web socket testing."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Web Socket Client एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        ]
    }
}