mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1171 from keepassxreboot/fix/ebay_logins
Fix detecting eBay password input fields
This commit is contained in:
commit
6dc93f15be
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ kpxcSites.exceptionFound = function(classList) {
|
|||
if (document.location.origin === 'https://idmsa.apple.com'
|
||||
&& [ 'password', 'form-row', 'show-password' ].every(c => classList.contains(c))) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://signin.ebay.com')
|
||||
} else if (document.location.origin.startsWith('https://signin.ebay.')
|
||||
&& classList.contains('null')) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://www.fidelity.com')
|
||||
|
|
|
|||
Loading…
Reference in a new issue