Ext.Net Message Bus Sniffer

Shows the events published on the Ext.Net Message Bus in the current page.

Cos'è Ext.Net Message Bus Sniffer?

Ext.Net Message Bus Sniffer è un'estensione di Chrome sviluppata da Onofrio Panzarino, e la sua funzione principale è "Shows the events published on the Ext.Net Message Bus in the current page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ext.Net Message Bus Sniffer

Scarica i file di estensione Ext.Net Message Bus Sniffer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Ext.Net Message Bus Sniffer Ext.Net Message Bus Sniffer
ID ldidajnlcglobphmonbnhbhgjipebocg
URL Ufficiale https://chrome.google.com/webstore/detail/extnet-message-bus-sniffe/ldidajnlcglobphmonbnhbhgjipebocg
Descrizione Shows the events published on the Ext.Net Message Bus in the current page.
Dimensione del File 9.1 KB
Conteggio Installazioni 32
Versione Corrente 0.1.1
Ultimo Aggiornamento 2015-03-11
Data di Pubblicazione 2015-03-11
Sviluppatore Onofrio Panzarino
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/onof/ExtNetEventSniffer
URL della Pagina di Aiuto http://github.com/onof/ExtNetEventSniffer/issues
Lingue Supportate 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';"
}