-
-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use URL hash to determine if on page that should be filled or not #1745
Comments
Need to check this one what Qt does to the URL's. We remove fragments (URL parts at the end which start with |
Fragments should only be acknowledged with best matching credentials enabled. Also we do not recommend you enable auto fill off forms from the extension. |
This causes problem especially for search inputs that performs some kind filtering. Then the extension always alters what's displayed. Edit: the best matching credentials option does what I want. I still think there's an UX issue here as I had to open this ticket to be aware of that option and what it does. I don't really know how to solve it, though. |
This PR allows exact URL's and should solve the issue: keepassxreboot/keepassxc#9835 |
Some… old school sites still use the
#hash-part
of the URL as a router (to keep support on IE11, I suppose). Namely Synology's web manager. This part does not seem to be considered as relevant bykeepassxc-browser
to determine wheter or not to fill a form. This result inkeepassxc-browser
filling everyinput
it can on every page of the site which is a bit annoying.Expected Behavior
If I specify
https://example.com/#/login
as a URL in KeepassXC,keepassxc-browser
should fill form only when URL ishttps://example.com/#/login
. Nothttps://example.com/
and nothttps://example.com/#/something-else
Current Behavior
The
#hash-part
is ignored bykeepassxc-browser
Possible Solution
In case this clashes with a current desired behaviour, this can be a per-site option clearly accessible somewhere.
Steps to Reproduce (for bugs)
keepassxc-browser
should autofill the form even when the hash is not presentDebug info
KeePassXC - 2.7.1
KeePassXC-Browser - 1.8.2.2
Operating system: Linux
Browser: Firefox
The text was updated successfully, but these errors were encountered: