Phoenix Channels Testing
A plug-in to test interaction via Phoenix channels
¿Qué es Phoenix Channels Testing?
Phoenix Channels Testing es una extensión de Chrome desarrollada por Sergey Zubtsovskiy, y su función principal es "A plug-in to test interaction via Phoenix channels".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Phoenix Channels Testing
Descarga archivos de extensión Phoenix Channels Testing en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Phoenix Channels Testing |
ID | jihfnoedknoabfkekffcojcedidjjlgo |
URL Oficial | https://chromewebstore.google.com/detail/phoenix-channels-testing/jihfnoedknoabfkekffcojcedidjjlgo |
Descripción | A plug-in to test interaction via Phoenix channels |
Tamaño del Archivo | 81.21 KB |
Cantidad de Instalaciones | 198 |
Versión Actual | 1.0 |
Última Actualización | 2018-04-06 |
Fecha de Publicación | 2018-04-06 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Sergey Zubtsovskiy |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } } |