DebugR

Receive debugging information alongside XMLHttpRequests.

DebugR क्या है?

DebugR Bob Fanger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Receive debugging information alongside XMLHttpRequests."।

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

screenshot

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

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

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

 Server code (example is php, but the extension is language agnostic):  Client via javascript: window.addEventListener('message', function (e) { if (e.data.debugR) { console.log(e.data); } }, false); document.documentElement.setAttribute('data-debugR'); // Signal the extension that the eventlistener is active. Using debugr.js helper:                      

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

नाम DebugR DebugR
ID odgodmleeenojpjigkkbicijhpplolmm
आधिकारिक URL https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm
विवरण Receive debugging information alongside XMLHttpRequests.
फ़ाइल का आकार 666 KB
स्थापना संख्या 26
वर्तमान संस्करण 1.3
अंतिम अपडेट 2018-05-16
प्रकाशन तिथि 2018-05-16
डेवलपर Bob Fanger
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bfanger.nl/debugr/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DebugR",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Receive debugging information alongside XMLHttpRequests.",
    "icons": {
        "16": "img\/16.png",
        "128": "img\/128.png"
    },
    "background": {
        "scripts": [
            "js\/debugr-Daemon.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/debugr-forwarder.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}