1

From Ionic 4 mobile app, How can I open external URL only in chrome browser ? I have tried InAppBrowser with _system, but it is opening in default browser.

Can anyone please let me know that Is there any way using that I can open external URL only in chrome browser ?

Darshana
  • 662
  • 1
  • 10
  • 29

1 Answers1

1

According to this thread, it seems that you can use the following to specifically target Google Chrome on Android:

"googlechrome://navigate?url=" + url

You could try plugging that into the url and see what happens?

On IOS you would need to find a different solution although all of the browsers are using the same rendering engine at their core so I don't know if you need it for that?

rtpHarry
  • 13,019
  • 4
  • 43
  • 64