Ext.Net Message Bus Sniffer

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

O que é Ext.Net Message Bus Sniffer?

Ext.Net Message Bus Sniffer é uma extensão do Chrome desenvolvida por Onofrio Panzarino, e sua principal característica é "Shows the events published on the Ext.Net Message Bus in the current page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Ext.Net Message Bus Sniffer

Baixe arquivos de extensão Ext.Net Message Bus Sniffer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Ext.Net Message Bus Sniffer Ext.Net Message Bus Sniffer
ID ldidajnlcglobphmonbnhbhgjipebocg
URL Oficial https://chrome.google.com/webstore/detail/extnet-message-bus-sniffe/ldidajnlcglobphmonbnhbhgjipebocg
Descrição Shows the events published on the Ext.Net Message Bus in the current page.
Tamanho do Arquivo 9.1 KB
Contagem de Instalações 32
Versão Atual 0.1.1
Última Atualização 2015-03-11
Data de Publicação 2015-03-11
Desenvolvedor Onofrio Panzarino
Tipo de Pagamento free
Site da Extensão http://github.com/onof/ExtNetEventSniffer
URL da Página de Ajuda http://github.com/onof/ExtNetEventSniffer/issues
Idiomas Suportados 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';"
}