How can I determine if the current browser is Chrome using TypeScript/JavaScript?
I previously used the following method:
var isChrome = !!(<any>window).chrome && !!(<any>window).chrome.webstore;
However, this doesn't work anymore. Is there a new approach I can take? I prefer not to rely on UserAgent due to past issues.