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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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