DebugR
Receive debugging information alongside XMLHttpRequests.
Wat is DebugR?
DebugR is een Chrome-extensie ontwikkeld door Bob Fanger, en de belangrijkste functie is "Receive debugging information alongside XMLHttpRequests.".
Extensie Screenshots
Download het CRX-bestand van de extensie DebugR
Download DebugR-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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:
Basisinformatie over de Extensie
Naam | DebugR |
ID | odgodmleeenojpjigkkbicijhpplolmm |
Officiële URL | https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm |
Beschrijving | Receive debugging information alongside XMLHttpRequests. |
Bestandsgrootte | 666 KB |
Aantal Installaties | 26 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2018-05-16 |
Publicatiedatum | 2018-05-16 |
Ontwikkelaar | Bob Fanger |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://bfanger.nl/debugr/ |
Ondersteunde Talen | 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:\/\/*\/*" ] } |