MSN Games
MSN Games { if (window) { const originalFetch = fetch; window.fetch = async (input, init) => { const url = typeof input === “string” ? new URL(input, window.location.origin) : input instanceof URL ? input : new URL(input.url, window.location.origin); if (url.searchParams.get(“_rsc”)) { const arkrsc = window.location.pathname.includes(“/games/”) && url.pathname.includes(“/games/”) ? “game” : “other”; url.searchParams.set(“arkrsc”, arkrsc); if (input instanceof Request) { input = new Request(url.toString(), input) } } const response = await originalFetch(input, init); return response } } })();]]>
Source