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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}