vivaldi.savedpasswords Modders API Reference
Use the chrome.savedpasswords
to display & delete saved passwords.
Types
#SavedPasswordItem
Item containing saved password.
Properties:
- index
string
Saved password index in the list.
- origin
string
The origin url of saved password.
- username
string
The user name of saved password.
- password
string
The password in clear text.
#PasswordForm
Information about the password form to store or retrieve. The fields should match those documented in chromium/components/password_manager/core/browser/password_form.h
Properties:
- signon_realm
string
⚠ NO DESCRIPTION PROVIDED
- origin
string
⚠ NO DESCRIPTION PROVIDED
- username
string
⚠ NO DESCRIPTION PROVIDED
- password
- (optional)
string
⚠ NO DESCRIPTION PROVIDED
Methods
#createDelegate
Creates a passwords_private_delegate for the current user profile.
#add
Stores a password in the password store.
Parameters:
- isExplicit
boolean
The action was initiated as the result of user input
- passwordForm
PasswordForm
⚠ NO DESCRIPTION PROVIDED
#get
Retrieves a password in the password store.
Parameters:
- passwordForm
PasswordForm
⚠ NO DESCRIPTION PROVIDED
#delete
Removes a password in the password store.
Parameters:
- isExplicit
boolean
The action was initiated as the result of user input
- passwordForm
PasswordForm
⚠ NO DESCRIPTION PROVIDED
#getList
Retrieves list of saved passwords.
#remove
Removes an item from the list retrieved with getList.
Parameters:
- id
string
⚠ NO DESCRIPTION PROVIDED
#authenticate
Before showing password to the user, make sure they are authenticated via the OS.
Parameters:
- windowId
integer
⚠ NO DESCRIPTION PROVIDED