Support adf.ly TOTP field

This commit is contained in:
Unpublished 2023-02-14 11:51:58 +01:00
parent ce4f5828d1
commit 1e4bcdadcc

View file

@ -164,6 +164,9 @@ kpxcSites.expectedTOTPMaxLength = function() {
if (document.location.origin.startsWith('https://www.amazon')
&& document.location.href.includes('/ap/mfa')) {
return 20;
} else if (document.location.origin.startsWith('https://adf.ly')
&& document.location.href.includes('/index/twoFactorAuthentication')) {
return 30;
}
return MAX_TOTP_INPUT_LENGTH;