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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows the events published on the Ext.Net Message Bus in the current page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ext.Net Message Bus Sniffer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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';"
}