Advanced WebSocket Client

Construct custom Web Socket requests and handle responses to directly test your Web Socket services.

什麼是Advanced WebSocket Client?

Advanced WebSocket Client是由Alexandr Mekh開發的Chrome擴展程式,該擴展的主要功能是“Construct custom Web Socket requests and handle responses to directly test your Web Socket services.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Advanced WebSocket Client擴展crx文件

下載Advanced WebSocket Client擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Advanced WebSocket Client is an extension for Google Chrome to help construct custom Web Socket requests and handle responses to directly test your Web Socket services.

It has been developed to support JSON request/response format and the main feature is that you don't have to format your request strictly as it required by the RFC - you may use either a single-quoted, double-quoted or no-quoted strings as a string keys and values as well as to use trailing commas in object literals.

Also, it supports code line/block comments in the same way as in JavaScript.

Shortcats:
    F1 - fullscreen on/off
    F2 - line wrapping on/off
    Ctrl-Alt-J - format JSON
    Ctrl-Q - fold/unfold a code block
    Ctrl-/ - comment/uncomment line/block                    

擴展基本資訊

名稱 Advanced WebSocket Client Advanced WebSocket Client
ID lgimpnfdefcpkicbflpmainbcdnlblej
官方網址 https://chromewebstore.google.com/detail/advanced-websocket-client/lgimpnfdefcpkicbflpmainbcdnlblej
簡介 Construct custom Web Socket requests and handle responses to directly test your Web Socket services.
檔案大小 227 KB
安裝次數 876
目前版本 1.0.1
更新時間 2020-11-28
上架時間 2020-01-25
評分 3.67/5 共 3 次評分
開發者 Alexandr Mekh
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mekh/advanced-websocket-client
隱私政策頁面URL https://github.com/mekh/advanced-websocket-client/blob/master/PRIVACY.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced WebSocket Client",
    "short_name": "WebSocket",
    "author": "Alexandr Mekh",
    "homepage_url": "https:\/\/github.com\/mekh\/advanced-websocket-client",
    "manifest_version": 2,
    "version": "1.0.1",
    "description": "Construct custom Web Socket requests and handle responses to directly test your Web Socket services.",
    "icons": {
        "16": "resources\/icon_016.png",
        "32": "resources\/icon_032.png",
        "48": "resources\/icon_048.png",
        "64": "resources\/icon_064.png",
        "128": "resources\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "resources\/icon_032.png",
            "64": "resources\/icon_064.png"
        }
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}