Use the chrome.safeBrowsingPrivate API to observe events or retrieve referrer chain.
Use the chrome.safeBrowsingPrivate API to observe events or retrieve referrer chain. * available since Chrome 68
(get-referrer-chain tab-id)
Gets referrer chain for the specified tab.
|tab-id| - Id of the tab from which to retrieve the referrer.
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.
Gets referrer chain for the specified tab. |tab-id| - Id of the tab from which to retrieve the referrer. 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.
(on-policy-specified-password-changed* config channel & args)
(on-policy-specified-password-reuse-detected* config channel & args)
(on-security-interstitial-proceeded* config channel & args)
(tap-all-events chan)
Taps all valid non-deprecated events in chromex.ext.safe-browsing-private namespace.
Taps all valid non-deprecated events in chromex.ext.safe-browsing-private namespace.
(tap-on-dangerous-download-opened-events channel & args)
Fired when the user opened a dangerous download.
Events will be put on the |channel| with signature [::on-dangerous-download-opened [dict]] where:
|dict| - ?
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
Fired when the user opened a dangerous download. Events will be put on the |channel| with signature [::on-dangerous-download-opened [dict]] where: |dict| - ? Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
(tap-on-policy-specified-password-changed-events channel & args)
Fired when the user changed their policy specified password.
Events will be put on the |channel| with signature [::on-policy-specified-password-changed [user-name]] where:
|user-name| - The user name of the policy specified password.
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
Fired when the user changed their policy specified password. Events will be put on the |channel| with signature [::on-policy-specified-password-changed [user-name]] where: |user-name| - The user name of the policy specified password. Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
(tap-on-policy-specified-password-reuse-detected-events channel & args)
Fired when Chrome detects a reuse of a policy specified password.
Events will be put on the |channel| with signature [::on-policy-specified-password-reuse-detected [reuse-details]] where:
|reuse-details| - Details about where the password reuse occurred.
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
Fired when Chrome detects a reuse of a policy specified password. Events will be put on the |channel| with signature [::on-policy-specified-password-reuse-detected [reuse-details]] where: |reuse-details| - Details about where the password reuse occurred. Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
(tap-on-security-interstitial-proceeded-events channel & args)
Fired when the user clicked-through a security interstitial.
Events will be put on the |channel| with signature [::on-security-interstitial-proceeded [dict]] where:
|dict| - ?
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
Fired when the user clicked-through a security interstitial. Events will be put on the |channel| with signature [::on-security-interstitial-proceeded [dict]] where: |dict| - ? Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
(tap-on-security-interstitial-shown-events channel & args)
Fired when a security interstitial is shown to the user.
Events will be put on the |channel| with signature [::on-security-interstitial-shown [dict]] where:
|dict| - ?
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
Fired when a security interstitial is shown to the user. Events will be put on the |channel| with signature [::on-security-interstitial-shown [dict]] where: |dict| - ? Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close