DebugR
Receive debugging information alongside XMLHttpRequests.
Apa itu DebugR?
DebugR adalah ekstensi Chrome yang dikembangkan oleh Bob Fanger, dan fitur utamanya adalah "Receive debugging information alongside XMLHttpRequests.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi DebugR
Unduh file ekstensi DebugR dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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:
Informasi Dasar Ekstensi
Nama | DebugR |
ID | odgodmleeenojpjigkkbicijhpplolmm |
URL Resmi | https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm |
Deskripsi | Receive debugging information alongside XMLHttpRequests. |
Ukuran File | 666 KB |
Jumlah Instalasi | 26 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2018-05-16 |
Tanggal Publikasi | 2018-05-16 |
Pengembang | Bob Fanger |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://bfanger.nl/debugr/ |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |