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
公式URL 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"
        ]
    }
}