Compare commits

..

No commits in common. "develop" and "1.10.0" have entirely different histories.

7 changed files with 14 additions and 18 deletions

View file

@ -1,8 +1,3 @@
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) 1.10.0 (2026-03-04)
========================= =========================
- Add preliminary support for Safari [#2800] - Add preliminary support for Safari [#2800]

View file

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

View file

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

View file

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

View file

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

4
package-lock.json generated
View file

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

View file

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