postMessage debugger

This extension prints messages sent with postMessage to the console

postMessage debugger क्या है?

postMessage debugger wille.eklund द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension prints messages sent with postMessage to the console"।

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

screenshot

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

crx प्रारूप में postMessage debugger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This chrome extension prints messages sent with postMessage to the console for debugging.                    

एक्सटेंशन की मूल जानकारी

नाम postMessage debugger postMessage debugger
ID ibnkhbkkelpcgofjlfnlanbigclpldad
आधिकारिक URL https://chromewebstore.google.com/detail/postmessage-debugger/ibnkhbkkelpcgofjlfnlanbigclpldad
विवरण This extension prints messages sent with postMessage to the console
फ़ाइल का आकार 3.61 KB
स्थापना संख्या 4,982
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2018-11-28
प्रकाशन तिथि 2018-11-23
रेटिंग 4.58/5 कुल 12 रेटिंग्स
डेवलपर wille.eklund
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "postMessage debugger",
    "description": "This extension prints messages sent with postMessage to the console",
    "version": "0.2.0",
    "browser_action": {
        "name": "Debug postMessages"
    },
    "content_scripts": [
        {
            "js": [
                "js\/postMessage-debugger.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}