How I can detect if the user is using AVG as a browser?
If I go to Google and I type in what is my useragent, then AVG/100.xxx is mentioned, but when I use navigator.userAgent, the AVG part is not there.
What am I missing?
OK, I found the trick. By looking further in the debugger, I found out that you can grab the info via the ua client hints.
navigator.userAgentData.getHighEntropyValues(["platform"])
.then(ua => {console.log(ua)});