Phoenix Channels Testing
A plug-in to test interaction via Phoenix channels
Qu'est-ce que Phoenix Channels Testing ?
Phoenix Channels Testing est une extension Chrome développée par Sergey Zubtsovskiy, et sa fonction principale est "A plug-in to test interaction via Phoenix channels".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Phoenix Channels Testing
Téléchargez les fichiers d'extension Phoenix Channels Testing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Phoenix Channels Testing |
ID | jihfnoedknoabfkekffcojcedidjjlgo |
URL Officiel | https://chromewebstore.google.com/detail/phoenix-channels-testing/jihfnoedknoabfkekffcojcedidjjlgo |
Description | A plug-in to test interaction via Phoenix channels |
Taille du Fichier | 81.21 KB |
Nombre d'Installations | 198 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2018-04-06 |
Date de Publication | 2018-04-06 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Sergey Zubtsovskiy |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |