This code for get all information on event in request/response (XHR/Fetch) you can manipulation everything in Request/Response like headers, data, & etc.
i don't want to handle 10++ request for get something in request/response, so overwrite window.fetch (globally) to do it.
const OriginalFetch = window.fetch
window.fetch = (url, options) => {