Ext.Net Message Bus Sniffer
Shows the events published on the Ext.Net Message Bus in the current page.
Ext.Net Message Bus Snifferคืออะไร?
Ext.Net Message Bus Sniffer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Onofrio Panzarino และคุณลักษณะหลักของมันคือ "Shows the events published on the Ext.Net Message Bus in the current page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ext.Net Message Bus Sniffer
ดาวน์โหลดไฟล์ส่วนขยาย Ext.Net Message Bus Sniffer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is useful for ASP.NET developers working with Ext.Net. If you need a simple way to get the latest event published on the Ext.Net message bus this extension is for you. It shows the event (name, date and data sent along with the message in JSON format). The extension sniffs the Ext.Net message bus. If any event occurs in the page, an icon showing a bus appears in the address bar. Click it to see the events occurred on the page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ldidajnlcglobphmonbnhbhgjipebocg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/extnet-message-bus-sniffe/ldidajnlcglobphmonbnhbhgjipebocg |
คำอธิบาย | Shows the events published on the Ext.Net Message Bus in the current page. |
ขนาดไฟล์ | 9.1 KB |
จำนวนการติดตั้ง | 32 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2015-03-11 |
วันที่เผยแพร่ | 2015-03-11 |
ผู้พัฒนา | Onofrio Panzarino |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://github.com/onof/ExtNetEventSniffer |
URL หน้าช่วยเหลือ | http://github.com/onof/ExtNetEventSniffer/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ext.Net Message Bus Sniffer", "version": "0.1.1", "homepage_url": "http:\/\/github.com\/onof\/Ext.Net.Chrome.Tools", "description": "Shows the events published on the Ext.Net Message Bus in the current page.", "icons": { "128": "icon.png" }, "page_action": { "default_name": "Message Bus Events", "default_icon": "marker.png", "default_popup": "popup.html" }, "author": "Onofrio Panzarino", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "capturedBusEventsCs.js" ] }, { "matches": [ "http:\/\/*\/*" ], "js": [ "injectingCs.js" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "web_accessible_resources": [ "popup.js", "popup.css" ], "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self';" } |