Phoenix Channels Testing

A plug-in to test interaction via Phoenix channels

Co je Phoenix Channels Testing?

Phoenix Channels Testing je rozšíření Chrome vyvinuté Sergey Zubtsovskiy, a jeho hlavní funkcí je „A plug-in to test interaction via Phoenix channels“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Phoenix Channels Testing

Stáhněte si soubory rozšíření Phoenix Channels Testing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Phoenix Channels Testing Phoenix Channels Testing
ID jihfnoedknoabfkekffcojcedidjjlgo
Oficiální URL https://chromewebstore.google.com/detail/phoenix-channels-testing/jihfnoedknoabfkekffcojcedidjjlgo
Popis A plug-in to test interaction via Phoenix channels
Velikost souboru 81.21 KB
Počet instalací 198
Aktuální Verze 1.0
Poslední Aktualizace 2018-04-06
Datum Vydání 2018-04-06
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Sergey Zubtsovskiy
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}