mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #2759 from keepassxreboot/fix/add_site_exception_for_dubverse
Add submit button site exception for Dubverse
This commit is contained in:
commit
a429b6b717
1 changed files with 2 additions and 0 deletions
|
|
@ -217,6 +217,8 @@ kpxcSites.formSubmitButtonExceptionFound = function(form) {
|
|||
return form.querySelector('button[class*=_primary_]');
|
||||
} else if (!form && document.location.origin === 'https://www.reddit.com') {
|
||||
return $('button.login');
|
||||
} else if (form?.action === 'https://webapp.dubverse.ai/') {
|
||||
return $('button[class^=chakra]');
|
||||
}
|
||||
|
||||
return undefined;
|
||||
|
|
|
|||
Loading…
Reference in a new issue