Is there a way to open Chrome app on Android from default Android browser? I\'m able to open the app, but it doesn\'t redirect user to correct page. This is what I tried:
The best thing is to detect the user browser
alert(navigator.userAgent);
and depending on a conditional statement
if (navigator.userAgent.indexOf('foo')) { // code logic }
and based on that use BOM API to update window location
window.location.href = 'googlechrome://navigate?url='+ link;