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"
        ]
    }
}  |  |