A fairly big site is somehow detecting I am using Chrome Canary (Google Chrome's early-releases browser). I have tried several user-agent switchers, but somehow they still keep knowing I am using Canary.
I have tried user-agent detection, but that is definitely not a good way to check which browser someone uses. I have also tried this: https://stackoverflow.com/a/9851769/2098652 but it cannot tell the difference between regular Chrome and Chrome Canary.
!!window.chrome && !!window.chrome.webstore
This will tell if I am using Chrome, basically. However, there is no such object as window.canary
or window.chromeCanary
or anything like that.
Question is: How do I efficiently check, if someone is using Google Chrome Canary?