Liking cljdoc? Tell your friends :D
Mostly clj/s.
Exceptions indicated.

chromex.ext.passwords-private

clj

Use the chrome.passwordsPrivate API to add or remove password data from the settings UI.

  • available since Chrome master
Use the chrome.passwordsPrivate API to add or remove password
data from the settings UI.

  * available since Chrome master
raw docstring

api-tableclj

source

cancel-export-passwordsclj/smacro

(cancel-export-passwords)

Stops exporting passwords and cleans up any passwords, which were already written to the filesystem.

Stops exporting passwords and cleans up any passwords, which were already written to the filesystem.
sourceraw docstring

cancel-export-passwords*cljs

(cancel-export-passwords* config)
source

change-insecure-credentialclj/smacro

(change-insecure-credential credential new-password)

Requests to change the password of |credential| to |new_password|. Invokes |callback| or raises an error depending on whether the operation succeeded.

|credential| - The credential whose password should be changed. |new-password| - The new password.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests to change the password of |credential| to |new_password|. Invokes |callback| or raises an error depending on
whether the operation succeeded.

  |credential| - The credential whose password should be changed.
  |new-password| - The new password.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

change-insecure-credential*cljs

(change-insecure-credential* config credential new-password)
source

change-saved-passwordclj/smacro

(change-saved-password ids new-username new-password)

Changes the saved password corresponding to |ids|. Since the password can be stored in Google Account and on device, in this case we want to change the password for accountId and deviceId. Invokes |callback| or raises an error depending on whether the operation succeeded.

|ids| - The ids for the password entry being updated. |new-username| - The new username. |new-password| - The new password.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Changes the saved password corresponding to |ids|. Since the password can be stored in Google Account and on device, in
this case we want to change the password for accountId and deviceId. Invokes |callback| or raises an error depending on
whether the operation succeeded.

  |ids| - The ids for the password entry being updated.
  |new-username| - The new username.
  |new-password| - The new password.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

change-saved-password*cljs

(change-saved-password* config ids new-username new-password)
source

export-passwordsclj/smacro

(export-passwords)

Triggers the Password Manager password export functionality. Completion Will be signaled by the onPasswordsFileExportProgress event. |callback| will be called when the request is started or rejected. If rejected 'runtime.lastError' will be set to 'in-progress' or 'reauth-failed'.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Triggers the Password Manager password export functionality. Completion Will be signaled by the
onPasswordsFileExportProgress event. |callback| will be called when the request is started or rejected. If rejected
'runtime.lastError' will be set to 'in-progress' or 'reauth-failed'.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

export-passwords*cljs

(export-passwords* config)
source

gen-callclj

source

gen-wrapclj/smacro

(gen-wrap kind item-id config & args)
source

get-compromised-credentialsclj/smacro

(get-compromised-credentials)

Requests the latest compromised credentials.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [insecure-credentials] where:

|insecure-credentials| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests the latest compromised credentials.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [insecure-credentials] where:

  |insecure-credentials| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-compromised-credentials*cljs

(get-compromised-credentials* config)
source

get-password-check-statusclj/smacro

(get-password-check-status)

Returns the current status of the check via |callback|.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [status] where:

|status| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Returns the current status of the check via |callback|.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [status] where:

  |status| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-password-check-status*cljs

(get-password-check-status* config)
source

get-password-exception-listclj/smacro

(get-password-exception-list)

Returns the list of password exceptions.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [exceptions] where:

|exceptions| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Returns the list of password exceptions.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [exceptions] where:

  |exceptions| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-password-exception-list*cljs

(get-password-exception-list* config)
source

get-plaintext-insecure-passwordclj/smacro

(get-plaintext-insecure-password credential reason)

Requests the plaintext password for |credential|. |callback| gets invoked with the same |credential|, whose |password

field will be set.

|credential| - The insecure credential whose password is being retrieved. |reason| - The reason why the plaintext password is requested.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [credential] where:

|credential| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests the plaintext password for |credential|. |callback| gets invoked with the same |credential|, whose |password

field will be set.

  |credential| - The insecure credential whose password is being retrieved.
  |reason| - The reason why the plaintext password is requested.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [credential] where:

  |credential| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-plaintext-insecure-password*cljs

(get-plaintext-insecure-password* config credential reason)
source

get-saved-password-listclj/smacro

(get-saved-password-list)

Returns the list of saved passwords.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [entries] where:

|entries| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Returns the list of saved passwords.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [entries] where:

  |entries| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-saved-password-list*cljs

(get-saved-password-list* config)
source

get-weak-credentialsclj/smacro

(get-weak-credentials)

Requests the latest weak credentials.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [insecure-credentials] where:

|insecure-credentials| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests the latest weak credentials.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [insecure-credentials] where:

  |insecure-credentials| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-weak-credentials*cljs

(get-weak-credentials* config)
source

import-passwordsclj/smacro

(import-passwords)

Triggers the Password Manager password import functionality.

Triggers the Password Manager password import functionality.
sourceraw docstring

import-passwords*cljs

(import-passwords* config)
source

is-opted-in-for-account-storageclj/smacro

(is-opted-in-for-account-storage)

Requests the account-storage opt-in state of the current user.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [opted-in] where:

|opted-in| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests the account-storage opt-in state of the current user.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [opted-in] where:

  |opted-in| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

is-opted-in-for-account-storage*cljs

(is-opted-in-for-account-storage* config)
source

move-password-to-accountclj/smacro

(move-password-to-account id)

Moves a password currently stored on the device to being stored in the signed-in, non-syncing Google Account. The result is a no-op if any of these is true: |id| is invalid; |id| corresponds to a password already stored in the account; or the user is not using the account-scoped password storage.

|id| - The id for the password entry being moved.

Moves a password currently stored on the device to being stored in the signed-in, non-syncing Google Account. The result is
a no-op if any of these is true: |id| is invalid; |id| corresponds to a password already stored in the account; or the user
is not using the account-scoped password storage.

  |id| - The id for the password entry being moved.
sourceraw docstring

move-password-to-account*cljs

(move-password-to-account* config id)
source

on-account-storage-opt-in-state-changed*cljs

(on-account-storage-opt-in-state-changed* config channel & args)
source

on-compromised-credentials-changed*cljs

(on-compromised-credentials-changed* config channel & args)
source

on-password-check-status-changed*cljs

(on-password-check-status-changed* config channel & args)
source

on-password-exceptions-list-changed*cljs

(on-password-exceptions-list-changed* config channel & args)
source

on-passwords-file-export-progress*cljs

(on-passwords-file-export-progress* config channel & args)
source

on-saved-passwords-list-changed*cljs

(on-saved-passwords-list-changed* config channel & args)
source

on-weak-credentials-changed*cljs

(on-weak-credentials-changed* config channel & args)
source

opt-in-for-account-storageclj/smacro

(opt-in-for-account-storage opt-in)

Triggers the opt-in or opt-out flow for the account storage.

|opt-in| - ?

Triggers the opt-in or opt-out flow for the account storage.

|opt-in| - ?
sourceraw docstring

opt-in-for-account-storage*cljs

(opt-in-for-account-storage* config opt-in)
source

record-passwords-page-access-in-settingsclj/smacro

(record-passwords-page-access-in-settings)

Function that logs that the Passwords page was accessed from the Chrome Settings WebUI.

Function that logs that the Passwords page was accessed from the Chrome Settings WebUI.
sourceraw docstring

record-passwords-page-access-in-settings*cljs

(record-passwords-page-access-in-settings* config)
source

remove-insecure-credentialclj/smacro

(remove-insecure-credential credential)

Requests to remove |credential| from the password store. Invokes |callback| on completion.

|credential| - ?

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests to remove |credential| from the password store. Invokes |callback| on completion.

  |credential| - ?

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

remove-insecure-credential*cljs

(remove-insecure-credential* config credential)
source

remove-password-exceptionclj/smacro

(remove-password-exception id)

Removes the saved password exception corresponding to |id|. If no exception with this id exists, this function is a no-op.

|id| - The id for the exception url entry being removed.

Removes the saved password exception corresponding to |id|. If no exception with this id exists, this function is a no-op.

|id| - The id for the exception url entry being removed.
sourceraw docstring

remove-password-exception*cljs

(remove-password-exception* config id)
source

remove-password-exceptionsclj/smacro

(remove-password-exceptions ids)

Removes the saved password exceptions corresponding to |ids|. If no exception exists for a certain id, that id is ignored. Undoing this operation via undoRemoveSavedPasswordOrException will restore all the removed exceptions in the batch.

|ids| - ?

Removes the saved password exceptions corresponding to |ids|. If no exception exists for a certain id, that id is ignored.
Undoing this operation via undoRemoveSavedPasswordOrException will restore all the removed exceptions in the batch.

  |ids| - ?
sourceraw docstring

remove-password-exceptions*cljs

(remove-password-exceptions* config ids)
source

remove-saved-passwordclj/smacro

(remove-saved-password id)

Removes the saved password corresponding to |id|. If no saved password for this pair exists, this function is a no-op.

|id| - The id for the password entry being removed.

Removes the saved password corresponding to |id|. If no saved password for this pair exists, this function is a no-op.

|id| - The id for the password entry being removed.
sourceraw docstring

remove-saved-password*cljs

(remove-saved-password* config id)
source

remove-saved-passwordsclj/smacro

(remove-saved-passwords ids)

Removes the saved password corresponding to |ids|. If no saved password exists for a certain id, that id is ignored. Undoing this operation via undoRemoveSavedPasswordOrException will restore all the removed passwords in the batch.

|ids| - ?

Removes the saved password corresponding to |ids|. If no saved password exists for a certain id, that id is ignored.
Undoing this operation via undoRemoveSavedPasswordOrException will restore all the removed passwords in the batch.

  |ids| - ?
sourceraw docstring

remove-saved-passwords*cljs

(remove-saved-passwords* config ids)
source

request-export-progress-statusclj/smacro

(request-export-progress-status)

Requests the export progress status. This is the same as the last value seen on the onPasswordsFileExportProgress event. This function is useful for checking if an export has already been initiated from an older tab, where we might have missed the original event.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [status] where:

|status| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Requests the export progress status. This is the same as the last value seen on the onPasswordsFileExportProgress event.
This function is useful for checking if an export has already been initiated from an older tab, where we might have missed
the original event.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [status] where:

  |status| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

request-export-progress-status*cljs

(request-export-progress-status* config)
source

request-plaintext-passwordclj/smacro

(request-plaintext-password id reason)

Returns the plaintext password corresponding to |id|. Note that on some operating systems, this call may result in an OS-level reauthentication. Once the password has been fetched, it will be returned via |callback|.

|id| - The id for the password entry being being retrieved. |reason| - The reason why the plaintext password is requested.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [password] where:

|password| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Returns the plaintext password corresponding to |id|. Note that on some operating systems, this call may result in an
OS-level reauthentication. Once the password has been fetched, it will be returned via |callback|.

  |id| - The id for the password entry being being retrieved.
  |reason| - The reason why the plaintext password is requested.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [password] where:

  |password| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

request-plaintext-password*cljs

(request-plaintext-password* config id reason)
source

start-password-checkclj/smacro

(start-password-check)

Starts a check for insecure passwords. Invokes |callback| on completion.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Starts a check for insecure passwords. Invokes |callback| on completion.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

start-password-check*cljs

(start-password-check* config)
source

stop-password-checkclj/smacro

(stop-password-check)

Stops checking for insecure passwords. Invokes |callback| on completion.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Stops checking for insecure passwords. Invokes |callback| on completion.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [].

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

stop-password-check*cljs

(stop-password-check* config)
source

tap-all-eventsclj/smacro

(tap-all-events chan)

Taps all valid non-deprecated events in chromex.ext.passwords-private namespace.

Taps all valid non-deprecated events in chromex.ext.passwords-private namespace.
sourceraw docstring

tap-on-account-storage-opt-in-state-changed-eventsclj/smacro

(tap-on-account-storage-opt-in-state-changed-events channel & args)

Fired when the opt-in state for the account-scoped storage has changed.

Events will be put on the |channel| with signature [::on-account-storage-opt-in-state-changed [opted-in]] where:

|opted-in| - The new opt-in state.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the opt-in state for the account-scoped storage has changed.

Events will be put on the |channel| with signature [::on-account-storage-opt-in-state-changed [opted-in]] where:

  |opted-in| - The new opt-in state.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

tap-on-compromised-credentials-changed-eventsclj/smacro

(tap-on-compromised-credentials-changed-events channel & args)

Fired when the compromised credentials changed.

Events will be put on the |channel| with signature [::on-compromised-credentials-changed [compromised-credentials]] where:

|compromised-credentials| - The updated compromised credentials.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the compromised credentials changed.

Events will be put on the |channel| with signature [::on-compromised-credentials-changed [compromised-credentials]] where:

  |compromised-credentials| - The updated compromised credentials.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

tap-on-password-check-status-changed-eventsclj/smacro

(tap-on-password-check-status-changed-events channel & args)

Fired when the status of the password check changes.

Events will be put on the |channel| with signature [::on-password-check-status-changed [status]] where:

|status| - The updated status of the password check.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the status of the password check changes.

Events will be put on the |channel| with signature [::on-password-check-status-changed [status]] where:

  |status| - The updated status of the password check.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

tap-on-password-exceptions-list-changed-eventsclj/smacro

(tap-on-password-exceptions-list-changed-events channel & args)

Fired when the password exceptions list has changed, meaning that an entry has been added or removed.

Events will be put on the |channel| with signature [::on-password-exceptions-list-changed [exceptions]] where:

|exceptions| - The updated list of password exceptions.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the password exceptions list has changed, meaning that an entry has been added or removed.

Events will be put on the |channel| with signature [::on-password-exceptions-list-changed [exceptions]] where:

  |exceptions| - The updated list of password exceptions.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

tap-on-passwords-file-export-progress-eventsclj/smacro

(tap-on-passwords-file-export-progress-events channel & args)

Fired when the status of the export has changed.

Events will be put on the |channel| with signature [::on-passwords-file-export-progress [status]] where:

|status| - The progress status and an optional UI message.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the status of the export has changed.

Events will be put on the |channel| with signature [::on-passwords-file-export-progress [status]] where:

  |status| - The progress status and an optional UI message.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

tap-on-saved-passwords-list-changed-eventsclj/smacro

(tap-on-saved-passwords-list-changed-events channel & args)

Fired when the saved passwords list has changed, meaning that an entry has been added or removed.

Events will be put on the |channel| with signature [::on-saved-passwords-list-changed [entries]] where:

|entries| - The updated list of password entries.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the saved passwords list has changed, meaning that an entry has been added or removed.

Events will be put on the |channel| with signature [::on-saved-passwords-list-changed [entries]] where:

  |entries| - The updated list of password entries.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

tap-on-weak-credentials-changed-eventsclj/smacro

(tap-on-weak-credentials-changed-events channel & args)

Fired when the weak credentials changed.

Events will be put on the |channel| with signature [::on-weak-credentials-changed [weak-credentials]] where:

|weak-credentials| - The updated weak credentials.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the weak credentials changed.

Events will be put on the |channel| with signature [::on-weak-credentials-changed [weak-credentials]] where:

  |weak-credentials| - The updated weak credentials.

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

undo-remove-saved-password-or-exceptionclj/smacro

(undo-remove-saved-password-or-exception)

Undoes the last removal of saved password(s) or exception(s).

Undoes the last removal of saved password(s) or exception(s).
sourceraw docstring

undo-remove-saved-password-or-exception*cljs

(undo-remove-saved-password-or-exception* config)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close