Smart Websocket Client
A Debugging tool to help you test Websocket APIs
Apa itu Smart Websocket Client?
Smart Websocket Client adalah ekstensi Chrome yang dikembangkan oleh Luo Gang, dan fitur utamanya adalah "A Debugging tool to help you test Websocket APIs".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Smart Websocket Client
Unduh file ekstensi Smart Websocket Client dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Smart Websocket Client |
ID | omalebghpgejjiaoknljcfmglgbpocdp |
URL Resmi | https://chromewebstore.google.com/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp |
Deskripsi | A Debugging tool to help you test Websocket APIs |
Ukuran File | 261 KB |
Jumlah Instalasi | 42,457 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2016-01-22 |
Tanggal Publikasi | 2015-09-22 |
Penilaian | 3.90/5 Total 41 Penilaian |
Pengembang | Luo Gang |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/crysislinux/smart_websocket_client |
Bahasa yang Didukung | 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": [] } |