mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eab53c6a90 | ||
|
|
f1f4c1e0ff | ||
|
|
64fda92e27 |
7 changed files with 18 additions and 14 deletions
|
|
@ -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)
|
1.10.0 (2026-03-04)
|
||||||
=========================
|
=========================
|
||||||
- Add preliminary support for Safari [#2800]
|
- Add preliminary support for Safari [#2800]
|
||||||
|
|
|
||||||
7
dist/manifest_chromium.json
vendored
7
dist/manifest_chromium.json
vendored
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "KeePassXC-Browser",
|
"name": "KeePassXC-Browser",
|
||||||
"version": "1.10.0",
|
"version": "1.10.0.1",
|
||||||
"version_name": "1.10.0",
|
"version_name": "1.10.0.1",
|
||||||
"minimum_chrome_version": "124",
|
"minimum_chrome_version": "124",
|
||||||
"description": "__MSG_extensionDescription__",
|
"description": "__MSG_extensionDescription__",
|
||||||
"author": "KeePassXC Team",
|
"author": "KeePassXC Team",
|
||||||
|
|
@ -170,8 +170,7 @@
|
||||||
"tabs",
|
"tabs",
|
||||||
"webNavigation",
|
"webNavigation",
|
||||||
"webRequest",
|
"webRequest",
|
||||||
"webRequestAuthProvider",
|
"webRequestAuthProvider"
|
||||||
"webRequestBlocking"
|
|
||||||
],
|
],
|
||||||
"optional_permissions": [
|
"optional_permissions": [
|
||||||
"privacy"
|
"privacy"
|
||||||
|
|
|
||||||
2
dist/manifest_firefox.json
vendored
2
dist/manifest_firefox.json
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "KeePassXC-Browser",
|
"name": "KeePassXC-Browser",
|
||||||
"version": "1.10.0",
|
"version": "1.10.0.1",
|
||||||
"description": "__MSG_extensionDescription__",
|
"description": "__MSG_extensionDescription__",
|
||||||
"author": "KeePassXC Team",
|
"author": "KeePassXC Team",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
|
|
||||||
|
|
@ -124,9 +124,10 @@ kpxcSites.combinationExceptionFound = function(existingCombination) {
|
||||||
return false;
|
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 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?.password?.className?.length > 0
|
||||||
&& existingCombination?.username?.className === existingCombination?.password?.className) {
|
&& existingCombination?.username?.className === existingCombination?.password?.className) {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "KeePassXC-Browser",
|
"name": "KeePassXC-Browser",
|
||||||
"version": "1.10.0",
|
"version": "1.10.0.1",
|
||||||
"version_name": "1.10.0",
|
"version_name": "1.10.0.1",
|
||||||
"minimum_chrome_version": "124",
|
"minimum_chrome_version": "124",
|
||||||
"description": "__MSG_extensionDescription__",
|
"description": "__MSG_extensionDescription__",
|
||||||
"author": "KeePassXC Team",
|
"author": "KeePassXC Team",
|
||||||
|
|
@ -170,8 +170,7 @@
|
||||||
"tabs",
|
"tabs",
|
||||||
"webNavigation",
|
"webNavigation",
|
||||||
"webRequest",
|
"webRequest",
|
||||||
"webRequestAuthProvider",
|
"webRequestAuthProvider"
|
||||||
"webRequestBlocking"
|
|
||||||
],
|
],
|
||||||
"optional_permissions": [
|
"optional_permissions": [
|
||||||
"privacy"
|
"privacy"
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "keepassxc-browser",
|
"name": "keepassxc-browser",
|
||||||
"version": "1.10.0",
|
"version": "1.10.0.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "keepassxc-browser",
|
"name": "keepassxc-browser",
|
||||||
"version": "1.10.0",
|
"version": "1.10.0.1",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@npmcli/fs": "^2.1.0"
|
"@npmcli/fs": "^2.1.0"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "keepassxc-browser",
|
"name": "keepassxc-browser",
|
||||||
"version": "1.10.0",
|
"version": "1.10.0.1",
|
||||||
"description": "KeePassXC-Browser",
|
"description": "KeePassXC-Browser",
|
||||||
"main": "build.js",
|
"main": "build.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue