googlechrome://navigate?url=https://yandex.ru/
if let url = URL(string: "http://google.com") {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
if let url = URL(string: "http://google.com".replacingOccurrences(of: "http", with: "googlechrome")) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}