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)
=========================
- Add preliminary support for Safari [#2800]

View file

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

View file

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

View file

@ -124,10 +124,9 @@ kpxcSites.combinationExceptionFound = function(existingCombination) {
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 (document.location.origin === 'https://accounts.google.com'
&& existingCombination?.username?.className?.length > 0
if (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.1",
"version_name": "1.10.0.1",
"version": "1.10.0",
"version_name": "1.10.0",
"minimum_chrome_version": "124",
"description": "__MSG_extensionDescription__",
"author": "KeePassXC Team",
@ -170,7 +170,8 @@
"tabs",
"webNavigation",
"webRequest",
"webRequestAuthProvider"
"webRequestAuthProvider",
"webRequestBlocking"
],
"optional_permissions": [
"privacy"

4
package-lock.json generated
View file

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

View file

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