mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1394 from keepassxreboot/fix/site_fidelity
Fix Custom Field Selection for fidelity.com
This commit is contained in:
commit
460866a965
1 changed files with 6 additions and 3 deletions
|
|
@ -81,9 +81,12 @@ kpxcSites.exceptionFound = function(identifier) {
|
|||
} else if (document.location.origin.startsWith('https://signin.ebay.')
|
||||
&& (identifier === 'null' || identifier.value === 'null' || identifier === 'pass')) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://www.fidelity.com')
|
||||
&& identifier.contains('fs-mask-username')) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://www.fidelity.com')) {
|
||||
if (typeof identifier === 'string') {
|
||||
return identifier.includes('fs-mask-username');
|
||||
}
|
||||
|
||||
return identifier.contains('fs-mask-username');
|
||||
} else if (document.location.origin.startsWith('https://app.protonmail.ch')
|
||||
|| document.location.origin.startsWith('https://mail.protonmail.com')
|
||||
&& identifier === 'mailboxPassword') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue