Ext.Net Message Bus Sniffer

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

Ext.Net Message Bus Sniffer là gì?

Ext.Net Message Bus Sniffer là một tiện ích mở rộng Chrome được phát triển bởi Onofrio Panzarino, và tính năng chính của nó là "Shows the events published on the Ext.Net Message Bus in the current page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ext.Net Message Bus Sniffer

Tải xuống các tệp mở rộng Ext.Net Message Bus Sniffer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ext.Net Message Bus Sniffer Ext.Net Message Bus Sniffer
ID ldidajnlcglobphmonbnhbhgjipebocg
URL Chính Thức https://chrome.google.com/webstore/detail/extnet-message-bus-sniffe/ldidajnlcglobphmonbnhbhgjipebocg
Mô tả Shows the events published on the Ext.Net Message Bus in the current page.
Kích Thước Tệp 9.1 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2015-03-11
Ngày Phát Hành 2015-03-11
Nhà Phát Triển Onofrio Panzarino
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/onof/ExtNetEventSniffer
URL Trang Trợ Giúp http://github.com/onof/ExtNetEventSniffer/issues
Ngôn Ngữ Được Hỗ Trợ 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';"
}