DebugR
Receive debugging information alongside XMLHttpRequests.
Co to jest DebugR?
DebugR to rozszerzenie Chrome opracowane przez Bob Fanger, a jego główną funkcją jest „Receive debugging information alongside XMLHttpRequests.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia DebugR
Pobierz pliki rozszerzeń DebugR w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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:
Podstawowe informacje o rozszerzeniu
Nazwa | DebugR |
ID | odgodmleeenojpjigkkbicijhpplolmm |
Oficjalny URL | https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm |
Opis | Receive debugging information alongside XMLHttpRequests. |
Rozmiar pliku | 666 KB |
Liczba instalacji | 26 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2018-05-16 |
Data Publikacji | 2018-05-16 |
Deweloper | Bob Fanger |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://bfanger.nl/debugr/ |
Obsługiwane Języki | 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:\/\/*\/*" ] } |