This repository now includes a minimal Chromium extension that records request/response payloads for remote function calls.
If your app calls remote functions from browser code and those requests become encrypted before they leave the page, a normal network inspector may only show encrypted bytes. This extension instruments browser APIs inside the page context to capture payloads at call time.
fetch/XMLHttpRequest, this extension will still see the encrypted payload unless you also hook your app's encryption layer.chrome://extensions.extension/ folder.content.js injects page-hook.js into the page's JS world.page-hook.js hooks browser requests and only captures /_app/remote/ calls.service_worker.js stores captured events.devtools.html / devtools-panel.html add a Remote Inspector DevTools panel./_app/remote/ requests.../kit/packages/kit/src/runtime/shared.js and server response handling from ../kit/packages/kit/src/runtime/server/remote.js.encryptPayload).