Fix detecting Atlassian password input

This commit is contained in:
varjolintu 2025-06-04 07:35:29 +03:00
parent dac9ceceff
commit 606e35762f

View file

@ -97,6 +97,9 @@ kpxcSites.exceptionFound = function(identifier, field) {
return true;
} else if (document.location.origin === 'https://wordpress.com' && identifier?.value === 'login__form-password') {
return true;
} else if (document.location.origin === 'https://id.atlassian.com' &&
Array.isArray(identifier) && identifier?.contains('password-field')) {
return true;
}
return false;