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