Attempted url schema to go to “chrome browser” from “Samsung internet”
However, there is a pop-up that does not go directly to the Chrome browser and makes browser choices.
How do I get to go directly to my Chrome browser like the previous version of Samsung Internet?
삼성인터넷에서 크롬브라우저로 이동하는 url스키마를 작성했습니다.
그러나, 크롬브라우저로 이동하지 않고 브라우저 선택 팝업이 뜹니다.
과거의 삼성인터넷 버전 처럼 크롬브라우저로 바로 이동하게 할려면 어떻게 해야합니까?
samsung internet ver : 20.0.3.10v
test device: galaxy filp 3
source code:
<html>
<head>
<script type="text/javascript">
function openChrome() {
var url = "www.google.com";
var link = "intent://" + url + "#Intent;scheme=http;package=com.android.chrome;end";
//var link = "googlechrome://naviate?url="+url;
//window.open(link, "_system");
window.location.href = link;
}
</script>
</head>
<body>
<input type="button" id="btnPass" value="go" class="btnType02" onclick= "javascript:openChrome();">
</body>
</html>