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
官方網址 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';"
}