Browser WebSocket Client
Connect to a WebSocket server to send and receive raw JSON messages.
什麼是Browser WebSocket Client?
Browser WebSocket Client是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Connect to a WebSocket server to send and receive raw JSON messages.”。
擴展截圖
下載Browser WebSocket Client擴展crx文件
下載Browser WebSocket Client擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Browser WebSocket Client is an extension for Chrome and Firefox that provides a simple method for testing a WebSocket server. It allows you to send and receive raw JSON messages as well as save server URLs, protocols, and messages for later use.
Advantages
Intuitive Bootstrap 4 user interface
Save server URLs, protocols, and messages for later use
Login to Chrome or Mozilla and your saved settings will be synced across different devices
Pretty-print incoming JSON messages and saved message bodies
Export and import the plugin settings so you can easily backup and share them with colleges 擴展基本資訊
| 名稱 | |
| ID | mdmlhchldhfnfnkfmljgeinlffmdgkjo |
| 官方網址 | https://chromewebstore.google.com/detail/browser-websocket-client/mdmlhchldhfnfnkfmljgeinlffmdgkjo |
| 簡介 | Connect to a WebSocket server to send and receive raw JSON messages. |
| 檔案大小 | 568 KB |
| 安裝次數 | 10,000 |
| 目前版本 | 1.4.2 |
| 更新時間 | 2020-03-10 |
| 上架時間 | 2020-03-08 |
| 評分 | 4.43/5 共 14 次評分 |
| 開發者 | Unknown |
| 付費類型 | free |
| 說明頁面URL | https://github.com/abeade/browser-websocket-client |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Browser WebSocket Client",
"manifest_version": 2,
"version": "1.4.2",
"description": "Connect to a WebSocket server to send and receive raw JSON messages.",
"icons": {
"16": "icon_016.png",
"32": "icon_032.png",
"48": "icon_048.png",
"128": "icon_128.png"
},
"browser_action": {
"default_icon": "icon_032.png",
"default_title": "Browser WebSocket Client"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"https:\/\/www.google-analytics.com\/",
"storage",
"activeTab",
"downloads"
],
"options_page": "index.html#options"
} | |