-
-
Save hmmhmmhm/0e701fc9d691f7a7f816991279f9cdc3 to your computer and use it in GitHub Desktop.
카카오톡 인앱 브라우저 탈출하기 코드 가장 심플하게 정리 (2023.10.27 동작 확인)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const userAgent = navigator.userAgent.toLowerCase() | |
if (/kakaotalk/.test(userAgent)) { | |
location.href = | |
'kakaotalk://web/openExternal?url=' + encodeURIComponent(location.href) | |
setTimeout(() => { | |
location.href = /ipad|iphone|ipod/.test(userAgent) | |
? 'kakaoweb://closeBrowser' | |
: 'kakaotalk://inappbrowser/close' | |
}) | |
} |
탈출이 가능함을 확인함을 확인하였습니다
탈출이 가능함을 확인함을 확인하였습니다
더블 체크 감삼니다
좋네요
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
여는 URL을
https://
가 아닌googlechrome://
으로 열면 카카오톡 인앱 브라우저에서 크롬 브라우저로 탈출도 가능함을 확인하였습니다.