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';" } |