Compare commits

..

3 commits

Author SHA1 Message Date
Sami Vänttinen
eab53c6a90
Update to 1.10.0.1 (#2895) 2026-03-08 10:03:31 +02:00
Sami Vänttinen
f1f4c1e0ff
Fix dynamic password input detection when replacing usename (#2896) 2026-03-08 09:25:45 +02:00
Sami Vänttinen
64fda92e27
Remove webRequestBlocking permission from V3 manifests (#2893) 2026-03-06 14:57:41 +02:00
7 changed files with 18 additions and 14 deletions

View file

@ -1,3 +1,8 @@
1.10.0.1 (2026-03-08)
=========================
- Remove webRequestBlocking permission from V3 manifests [#2893]
- Fix dynamic password input detection when replacing username [#2896]
1.10.0 (2026-03-04)
=========================
- Add preliminary support for Safari [#2800]

View file

@ -1,8 +1,8 @@
{
"manifest_version": 3,
"name": "KeePassXC-Browser",
"version": "1.10.0",
"version_name": "1.10.0",
"version": "1.10.0.1",
"version_name": "1.10.0.1",
"minimum_chrome_version": "124",
"description": "__MSG_extensionDescription__",
"author": "KeePassXC Team",
@ -170,8 +170,7 @@
"tabs",
"webNavigation",
"webRequest",
"webRequestAuthProvider",
"webRequestBlocking"
"webRequestAuthProvider"
],
"optional_permissions": [
"privacy"

View file

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "KeePassXC-Browser",
"version": "1.10.0",
"version": "1.10.0.1",
"description": "__MSG_extensionDescription__",
"author": "KeePassXC Team",
"icons": {

View file

@ -124,9 +124,10 @@ kpxcSites.combinationExceptionFound = function(existingCombination) {
return false;
}
// Exception for e.g. Google. They replace the username input with password input using identical className.
// Exception for Google. They replace the username input with password input using identical className.
// If detected, remove the username from the combination.
if (existingCombination?.username?.className?.length > 0
if (document.location.origin === 'https://accounts.google.com'
&& existingCombination?.username?.className?.length > 0
&& existingCombination?.password?.className?.length > 0
&& existingCombination?.username?.className === existingCombination?.password?.className) {
return true;

View file

@ -1,8 +1,8 @@
{
"manifest_version": 3,
"name": "KeePassXC-Browser",
"version": "1.10.0",
"version_name": "1.10.0",
"version": "1.10.0.1",
"version_name": "1.10.0.1",
"minimum_chrome_version": "124",
"description": "__MSG_extensionDescription__",
"author": "KeePassXC Team",
@ -170,8 +170,7 @@
"tabs",
"webNavigation",
"webRequest",
"webRequestAuthProvider",
"webRequestBlocking"
"webRequestAuthProvider"
],
"optional_permissions": [
"privacy"

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "keepassxc-browser",
"version": "1.10.0",
"version": "1.10.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "keepassxc-browser",
"version": "1.10.0",
"version": "1.10.0.1",
"license": "GPL-3.0",
"dependencies": {
"@npmcli/fs": "^2.1.0"

View file

@ -1,6 +1,6 @@
{
"name": "keepassxc-browser",
"version": "1.10.0",
"version": "1.10.0.1",
"description": "KeePassXC-Browser",
"main": "build.js",
"devDependencies": {