mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Add submit button exception for OpenAI login page
This commit is contained in:
parent
a2748198b0
commit
8e4b866f41
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue