DebugR

DebugR 1.3 CRX for Chrome

A Free Developer Tools Extension

Published By debugr.net

DebugR (odgodmleeenojpjigkkbicijhpplolmm): Receive debugging information alongside XMLHttpRequests.... Read More > or Download Now >

DebugR for Chrome

Download CRX

Download

666.15 KB

Chrome Store

Tech Specs

  • • Type: Browser Extension
  • • Latest Version: 1.3
  • • Price: Freeware
  • • Offline: No
  • • Developer: debugr.net

User Reviews

  • 0 Votes, Average: 0 out of 5
  • • Rating Average
  • 0 out of 5
  • • Rating Users
  • 0

Download Count

  • • Total Downloads
  • 7
  • • Current Version Downloads
  • 7
  • • Updated: May 16, 2018

DebugR is a free Developer Tools Extension for Chrome. You could download the latest version crx file and install it.

More About DebugR

Server code (example is php, but the extension is language agnostic):

<?php
if (isset($_SERVER['HTTP_DEBUGR'])) { // Only send headers when DebugR is enabled
// Send a message alongside the request.
header('DebugR: '.base64_encode('Hello DebugR'));
// Append a unique label to send multiple messages.
header('DebugR-my-first-label: '.base64_encode('Moarr information'));
}
?>

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:

<script src='js/debugr.js'></script>
<script>
debugR(function (message, details) {
console.log(message);
});
</script>

Download DebugR 1.3

More Extensions to Consider (Similar or Related)