Ext.Net Message Bus Sniffer
Shows the events published on the Ext.Net Message Bus in the current page.
Qu'est-ce que Ext.Net Message Bus Sniffer ?
Ext.Net Message Bus Sniffer est une extension Chrome développée par Onofrio Panzarino, et sa fonction principale est "Shows the events published on the Ext.Net Message Bus in the current page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ext.Net Message Bus Sniffer
Téléchargez les fichiers d'extension Ext.Net Message Bus Sniffer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ldidajnlcglobphmonbnhbhgjipebocg |
URL Officiel | https://chrome.google.com/webstore/detail/extnet-message-bus-sniffe/ldidajnlcglobphmonbnhbhgjipebocg |
Description | Shows the events published on the Ext.Net Message Bus in the current page. |
Taille du Fichier | 9.1 KB |
Nombre d'Installations | 32 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2015-03-11 |
Date de Publication | 2015-03-11 |
Développeur | Onofrio Panzarino |
Type de Paiement | free |
Site Web de l'Extension | http://github.com/onof/ExtNetEventSniffer |
URL de la Page d'Aide | http://github.com/onof/ExtNetEventSniffer/issues |
Langues Prises en Charge | 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';" } |