DebugR
Receive debugging information alongside XMLHttpRequests.
Was ist DebugR?
DebugR ist eine Chrome-Erweiterung, die von Bob Fanger entwickelt wurde, und ihr Hauptmerkmal ist "Receive debugging information alongside XMLHttpRequests.".
Erweiterungsscreenshots
DebugR-Erweiterungs-CRX-Datei herunterladen
Laden Sie DebugR-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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: Grundlegende Informationen zur Erweiterung
| Name | |
| ID | odgodmleeenojpjigkkbicijhpplolmm |
| Offizielle URL | https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm |
| Beschreibung | Receive debugging information alongside XMLHttpRequests. |
| Dateigröße | 666 KB |
| Installationsanzahl | 26 |
| Aktuelle Version | 1.3 |
| Letztes Update | 2018-05-16 |
| Veröffentlichungsdatum | 2018-05-16 |
| Entwickler | Bob Fanger |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://bfanger.nl/debugr/ |
| Unterstützte Sprachen | 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:\/\/*\/*"
]
} | |