DebugR

Receive debugging information alongside XMLHttpRequests.

Cos'è DebugR?

DebugR è un'estensione di Chrome sviluppata da Bob Fanger, e la sua funzione principale è "Receive debugging information alongside XMLHttpRequests.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DebugR

Scarica i file di estensione DebugR in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

 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:                      

Informazioni di Base sull'Estensione

Nome DebugR DebugR
ID odgodmleeenojpjigkkbicijhpplolmm
URL Ufficiale https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm
Descrizione Receive debugging information alongside XMLHttpRequests.
Dimensione del File 666 KB
Conteggio Installazioni 26
Versione Corrente 1.3
Ultimo Aggiornamento 2018-05-16
Data di Pubblicazione 2018-05-16
Sviluppatore Bob Fanger
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bfanger.nl/debugr/
Lingue Supportate 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:\/\/*\/*"
    ]
}