Phoenix Channels Testing
A plug-in to test interaction via Phoenix channels
O que é Phoenix Channels Testing?
Phoenix Channels Testing é uma extensão do Chrome desenvolvida por Sergey Zubtsovskiy, e sua principal característica é "A plug-in to test interaction via Phoenix channels".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Phoenix Channels Testing
Baixe arquivos de extensão Phoenix Channels Testing no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Phoenix Channels Testing |
ID | jihfnoedknoabfkekffcojcedidjjlgo |
URL Oficial | https://chromewebstore.google.com/detail/phoenix-channels-testing/jihfnoedknoabfkekffcojcedidjjlgo |
Descrição | A plug-in to test interaction via Phoenix channels |
Tamanho do Arquivo | 81.21 KB |
Contagem de Instalações | 198 |
Versão Atual | 1.0 |
Última Atualização | 2018-04-06 |
Data de Publicação | 2018-04-06 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Sergey Zubtsovskiy |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } } |