Hello everyone. I’m using BetterTouchTool’s floating web view to load Gmail, but the Passkey fingerprint prompt never appears when I try to sign in. In regular browsers I get a popup that asks for my fingerprint, but the floating web view doesn’t show it. Is there any way to enable Passkey / fingerprint prompts in BetterTouchTool’s web view?
unfortunately no, this would require a restricted entitlement from Apple being granted to BTT, I can try to apply for this - but it is unlikely Apple will grant it
Thanks Andreas. It seems like all types of popups are disabled in BTT by default. Is there a way to enable popups other than Apple Passkey?
No, popups are not disabled (unless you are on a very old BTT version). Simple example:
<html>
<head>
<script>
async function openPopup() {
let url = "https://folivora.ai";
newwindow=window.open(url,'name','height=600,width=600');
if (window.focus) {newwindow.focus()}
return result;
}
</script>
</head>
<body>
<button onclick="openPopup()">
Open Popup
</button>
</body>
</html>