Phoenix Channels Testing

A plug-in to test interaction via Phoenix channels

什麼是Phoenix Channels Testing?

Phoenix Channels Testing是由Sergey Zubtsovskiy開發的Chrome擴展程式,該擴展的主要功能是“A plug-in to test interaction via Phoenix channels”。

擴展截圖

screenshot
screenshot

下載Phoenix Channels Testing擴展crx文件

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

擴展使用說明

                        This plug-in allows painless testing of communication with a Phoenix app via channels. It is intended to use by developers creating Phoenix applications, primarily proof-of-concept versions without extensive unit testing. 

Phoenix channels run over WebSocket protocol and require some service messages for the server part to distinguish between different topics. This plug-in uses same JavaScript implementation which is bundled with Phoenix and provides nice UI to make it easier to use.

The plug-in stores up to 10 recent values of URL, topic, event and message and allows selecting them when typing in a value with help of autocompletion, makes it possible to see all frames (pretty much like in Chrome Dev Tools), resend a frame, preview JSON payloads and copy frame's text to the clipboard.                    

擴展基本資訊

名稱 Phoenix Channels Testing Phoenix Channels Testing
ID jihfnoedknoabfkekffcojcedidjjlgo
官方網址 https://chromewebstore.google.com/detail/phoenix-channels-testing/jihfnoedknoabfkekffcojcedidjjlgo
簡介 A plug-in to test interaction via Phoenix channels
檔案大小 81.21 KB
安裝次數 198
目前版本 1.0
更新時間 2018-04-06
上架時間 2018-04-06
評分 5.00/5 共 1 次評分
開發者 Sergey Zubtsovskiy
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Phoenix Channels Testing",
    "version": "1.0",
    "description": "A plug-in to test interaction via Phoenix channels",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "phoenix-framework.png",
        "48": "phoenix-framework.png",
        "128": "phoenix-framework.png"
    },
    "browser_action": {
        "default_icon": "phoenix-framework.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}