WebSocket King Client
A WebSocket client for testing and debugging connections.
什麼是WebSocket King Client?
WebSocket King Client是由https://websocketking.com開發的Chrome擴展程式,該擴展的主要功能是“A WebSocket client for testing and debugging connections.”。
擴展截圖
下載WebSocket King Client擴展crx文件
下載WebSocket King Client擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
WebSocket king is a a tool designed to assist in developing and debugging WebSocket connections. Features include: - A log of all incoming and outgoing messages to and from the WebSocket - Open multiple connections to the WebSocket - Save payloads that you commonly use to speed up development - Multiple tabs to allow you to quickly send different payloads - Manage and switch between multiple projects from a single interface - Option to auto-reconnect to the server on disconnection for faster development Request new features or submit a bug report! https://github.com/tomlerendu/WebSocket-King-Issues/issues
擴展基本資訊
名稱 | WebSocket King Client |
ID | cbcbkhdmedgianpaifchdaddpnmgnknn |
官方網址 | https://chromewebstore.google.com/detail/websocket-king-client/cbcbkhdmedgianpaifchdaddpnmgnknn |
簡介 | A WebSocket client for testing and debugging connections. |
檔案大小 | 773 KB |
安裝次數 | 23,199 |
目前版本 | 4.0.1 |
更新時間 | 2021-01-12 |
上架時間 | 2020-02-22 |
評分 | 4.68/5 共 37 次評分 |
開發者 | https://websocketking.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WebSocket King Client", "short_name": "WebSocket King", "version": "4.0.1", "permissions": [ "unlimitedStorage" ], "minimum_chrome_version": "50", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "images\/logo19.png", "38": "images\/logo38.png" }, "default_title": "WebSocket King" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+S", "mac": "Alt+S", "chromeos": "Alt+S", "linux": "Alt+S" } } }, "description": "A WebSocket client for testing and debugging connections.", "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |