function sendExternalData(){ var xhr = new XMLHttpRequest();xhr.open("GET", "https://example.com/external?data=foo");xhr.send(); var xhr1 = new XMLHttpRequest();xhr.open("GET", "https://adservice.google.com/pagead/regclk?auid=2039622696.1715876343&ref=www.google.com&url=https%3A%2F%2Fwww.agari.com%2F&tft=1716909685066&tfd=711&frm=0>m=45He45m0v6702304za200&gcs=G111&gcd=13v3v3v2v5&dma_cps=sypham&dma=1&npa=0");xhr.send(); var ws = new WebSocket("wss://example.com/external").send("foo"); var es = new EventSource("https://example.com/external"); }