Liking cljdoc? Tell your friends :D

chromex.ext.activity-log-private

clj
  • available since Chrome 33
  * available since Chrome 33
raw docstring

api-tableclj

source

delete-activitiesclj/smacro

(delete-activities activity-ids)

Deletes activities in the ActivityLog database specified in the array of activity IDs.

|activity-ids| - Erases only the activities which IDs are listed in the array.

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.

Deletes activities in the ActivityLog database specified in the array of activity IDs.

  |activity-ids| - Erases only the activities which IDs are listed in the array.

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

delete-activities*cljs

(delete-activities* config activity-ids)
source

delete-activities-by-extensionclj/smacro

(delete-activities-by-extension extension-id)

Deletes activities in the ActivityLog database specified by the extension ID.

|extension-id| - The ID of the extension to delete activities for.

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.

Deletes activities in the ActivityLog database specified by the extension ID.

  |extension-id| - The ID of the extension to delete activities for.

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

delete-activities-by-extension*cljs

(delete-activities-by-extension* config extension-id)
source

delete-databaseclj/smacro

(delete-database)

Deletes the entire ActivityLog database.

Deletes the entire ActivityLog database.
sourceraw docstring

delete-database*cljs

(delete-database* config)
source

delete-urlsclj/smacro

(delete-urls)
(delete-urls urls)

Delete URLs in the ActivityLog database.

|urls| - Erases only the URLs listed; if empty, erases all URLs.

Delete URLs in the ActivityLog database.

|urls| - Erases only the URLs listed; if empty, erases all URLs.
sourceraw docstring

delete-urls*cljs

(delete-urls* config urls)
source

gen-callclj

source

gen-wrapclj/smacro

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

get-extension-activitiesclj/smacro

(get-extension-activities filter)

Retrieves activity from the ActivityLog that matches the specified filter.

|filter| - Fill out the fields that you want to search for in the database.

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 [result] where:

|result| - ?

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.

Retrieves activity from the ActivityLog that matches the specified filter.

  |filter| - Fill out the fields that you want to search for in the database.

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 [result] where:

  |result| - ?

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-extension-activities*cljs

(get-extension-activities* config filter)
source

on-extension-activity*cljs

(on-extension-activity* config channel & args)
source

tap-all-eventsclj/smacro

(tap-all-events chan)

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

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

tap-on-extension-activity-eventsclj/smacro

(tap-on-extension-activity-events channel & args)

Fired when a given extension performs another activity.

Events will be put on the |channel| with signature [::on-extension-activity [activity]] where:

|activity| - ?

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

Fired when a given extension performs another activity.

Events will be put on the |channel| with signature [::on-extension-activity [activity]] where:

  |activity| - ?

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

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

× close