Phoenix Channels Testing
A plug-in to test interaction via Phoenix channels
Что такое Phoenix Channels Testing?
Phoenix Channels Testing - это расширение Chrome, разработанное Sergey Zubtsovskiy, и его основная функция - "A plug-in to test interaction via Phoenix channels".
Снимки экрана расширения
Скачать файл CRX расширения Phoenix Channels Testing
Скачайте файлы расширений Phoenix Channels Testing в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        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.                     Основная информация о расширении
| Название |   |  
| 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"
        ]
    }
}  |  |