1 2 3 4 5 6 7 8 9 10 11 12 13
<!doctype html> <html> <head><title>running</title></head> <body><script> window.onload = async function () { document.title = navigator.userAgentData.platform; document.title += "|"; document.title += navigator.userAgentData.mobile; document.title += "|"; document.title += JSON.stringify(navigator.userAgentData.brands); }; </script></body> </html>