From 8e4b866f41ddad8f0f8a171ccdcb58fcfb1159ed Mon Sep 17 00:00:00 2001 From: varjolintu Date: Thu, 8 May 2025 07:36:01 +0300 Subject: [PATCH] Add submit button exception for OpenAI login page --- keepassxc-browser/common/sites.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keepassxc-browser/common/sites.js b/keepassxc-browser/common/sites.js index 754d3ab..4ffd2d5 100644 --- a/keepassxc-browser/common/sites.js +++ b/keepassxc-browser/common/sites.js @@ -207,6 +207,8 @@ kpxcSites.formSubmitButtonExceptionFound = function(form) { } else if (!form && document.location.href.includes('reddit.com/settings')) { // Reddit change password popup return $('.button[slot=primary-button]'); + } else if (form?.action === 'https://auth.openai.com/log-in/password') { + return form.querySelector('button[class*=_primary_]'); } return undefined;