-
Notifications
You must be signed in to change notification settings - Fork 45
Password Autofill
Marius David Wieschollek edited this page Dec 29, 2023
·
2 revisions
The extension remembers which credentials were used on a website and will rank these credentials higher in the suggested credentials for this website. The data for this is stored locally and can be deleted in the extension settings.
- Open the extension settings (E.g. by clicking "Open Extension Settings" in the "Tools" tab)
- Open the "Debug" tab
- Click "Reset Recommendation Data"
When credentials are pasted into a website, it is possible to supply additional values which should be pasted into additional fields. These values must also be specified in the password entry using a specific format.
⭐ Only HTML input fields with an id are supported
- Right-click the input field and select "Inspect"
- Locate the
<input >
-HTML tag (should be highlighted) and check for theid
attribute. E.g. if the code looks like this:<input name="extra-field" type="text" placeholder="write something" id="extra-id">
, then the id field isid="extra-id"
and the id itself isextra-id
. - Copy the id.
- Open the edit dialog for the password entry
- Scroll down to the custom field section and enter
ext:field/
and the id you copied as the label of a new custom field. - Select "Form field" in the custom field type dropdown.
- Enter the value you want to be pasted in the field as the custom field value
- Save the password entry