mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Add Wordpress to Site Preferences
This commit is contained in:
parent
e06810f7f6
commit
9abc73309d
1 changed files with 4 additions and 1 deletions
|
|
@ -30,7 +30,8 @@ const PREDEFINED_SITELIST = [
|
|||
'https://login3.id.hp.com/*',
|
||||
'https://secure.fnac.com/identity/server/gateway/*',
|
||||
'https://*.openai.com/u/login/*',
|
||||
'https://www.patreon.com/login'
|
||||
'https://www.patreon.com/login',
|
||||
'https://*.wordpress.com/log-in/'
|
||||
];
|
||||
|
||||
const awsUrl = 'signin.aws.amazon.com';
|
||||
|
|
@ -86,6 +87,8 @@ kpxcSites.exceptionFound = function(identifier, field) {
|
|||
return true;
|
||||
} else if (document.location.origin === 'https://www.patreon.com' && field?.name === 'current-password') {
|
||||
return true;
|
||||
} else if (document.location.origin === 'https://wordpress.com' && identifier?.value === 'login__form-password') {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue