DebugR

Receive debugging information alongside XMLHttpRequests.

Vad är DebugR?

DebugR är en Chrome-tillägg utvecklad av Bob Fanger, och dess huvudfunktion är "Receive debugging information alongside XMLHttpRequests.".

Tilläggsskärmbilder

screenshot

Ladda ner DebugR-förlängningens CRX-fil

Ladda ner DebugR-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

 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:                      

Grundläggande Information om Tillägg

Namn DebugR DebugR
ID odgodmleeenojpjigkkbicijhpplolmm
Officiell webbadress https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm
Beskrivning Receive debugging information alongside XMLHttpRequests.
Filstorlek 666 KB
Antal Installationer 26
Aktuell Version 1.3
Senast Uppdaterad 2018-05-16
Publiceringsdatum 2018-05-16
Utvecklare Bob Fanger
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://bfanger.nl/debugr/
Stödda Språk 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:\/\/*\/*"
    ]
}