Web Socket Client
A tool for manual web socket testing.
Qu'est-ce que Web Socket Client ?
Web Socket Client est une extension Chrome développée par mschurr, et sa fonction principale est "A tool for manual web socket testing.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Web Socket Client
Téléchargez les fichiers d'extension Web Socket Client au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Web Socket Client |
ID | lifhekgaodigcpmnakfhaaaboididbdn |
URL Officiel | https://chromewebstore.google.com/detail/web-socket-client/lifhekgaodigcpmnakfhaaaboididbdn |
Description | A tool for manual web socket testing. |
Taille du Fichier | 41.06 KB |
Nombre d'Installations | 9,698 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-07-25 |
Date de Publication | 2017-02-01 |
Évaluation | 4.25/5 Total 12 Évaluations |
Développeur | mschurr |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mschurr/chrome-web-socket-client |
URL de la Page d'Aide | https://github.com/mschurr/chrome-web-socket-client |
Langues Prises en Charge | 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" ] } } |