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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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';" } |