DebugR

Receive debugging information alongside XMLHttpRequests.

What is DebugR?

DebugR is a Chrome extension developed by Bob Fanger, and its main feature is "Receive debugging information alongside XMLHttpRequests.".

Extension Screenshots

screenshot

Download DebugR Extension CRX File

Download DebugR extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

 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:                      

Extension Basic Information

Name DebugR DebugR
ID odgodmleeenojpjigkkbicijhpplolmm
Official URL https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm
Description Receive debugging information alongside XMLHttpRequests.
File Size 666 KB
Installation Count 26
Current Version 1.3
Last Updated 2018-05-16
Publish Date 2018-05-16
Developer Bob Fanger
Email [email protected]
Payment Type free
Extension Website https://bfanger.nl/debugr/
Supported Languages 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:\/\/*\/*"
    ]
}