Merge pull request #2760 from keepassxreboot/fix/add_exception_to_dei_gr

Add exception for dei.gr
This commit is contained in:
Sami Vänttinen 2025-11-15 18:06:09 +02:00 committed by GitHub
commit 9591aa27ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,6 +103,9 @@ kpxcSites.exceptionFound = function(identifier, field) {
} else if (document.location.origin === 'https://app.fastmail.com'
&& identifier?.contains('u-space-y-5') && field?.id === 'v25') {
return true;
} else if (document.location.origin === 'https://login.dei.gr' &&
identifier?.value?.includes('show-reveal-password')) {
return true;
}
return false;