On my company page in chrome console I get an issue that effects that page lighthouse best practices score.
The message: Audit usage of navigator.userAgent, navigator.appVersion, and navigator.platform.
A page or script is accessing at least one of navigator.userAgent, navigator.appVersion, and navigator.platform. Starting in Chrome 101, the amount of information available in the User Agent string will be reduced.
To fix this issue, replace the usage of navigator.userAgent, navigator.appVersion, and navigator.platform with feature detection, progressive enhancement, or migrate to navigator.userAgentData.
Note that for performance reasons, only the first access to one of the properties is shown.
When I look at the source code of that Google GSI script, I do find use of navigator.userAgent
So it is Google responsibility to update the script and I wonder where do I open that issue for them? I found no GitHub repo for the GSI script.
Please advise!