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是由Onofrio Panzarino开发的Chrome扩展程序,该扩展的主要功能是“Shows the events published on the Ext.Net Message Bus in the current page.”。

扩展截图

screenshot

下载Ext.Net Message Bus Sniffer扩展crx文件

下载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.                    

扩展基本信息

名称 Ext.Net Message Bus Sniffer Ext.Net Message Bus Sniffer
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';"
}