Web Socket Client

A tool for manual web socket testing.

Wat is Web Socket Client?

Web Socket Client is een Chrome-extensie ontwikkeld door mschurr, en de belangrijkste functie is "A tool for manual web socket testing.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Web Socket Client

Download Web Socket Client-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Web Socket Client Web Socket Client
ID lifhekgaodigcpmnakfhaaaboididbdn
Officiële URL https://chromewebstore.google.com/detail/web-socket-client/lifhekgaodigcpmnakfhaaaboididbdn
Beschrijving A tool for manual web socket testing.
Bestandsgrootte 41.06 KB
Aantal Installaties 9,698
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-07-25
Publicatiedatum 2017-02-01
Beoordeling 4.25/5 Totaal 12 Beoordelingen
Ontwikkelaar mschurr
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mschurr/chrome-web-socket-client
Help Pagina-URL https://github.com/mschurr/chrome-web-socket-client
Ondersteunde Talen 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"
        ]
    }
}