Liking cljdoc? Tell your friends :D

chromex.ext.declarative-net-request

clj

The chrome.declarativeNetRequest API is used to block or redirect network requests by specifying declarative rules.

The chrome.declarativeNetRequest API is used to block or
redirect network requests by specifying declarative rules.

  * available since Chrome master
  * https://developer.chrome.com/extensions/declarativeNetRequest
raw docstring

add-allowed-pagesclj/smacro

(add-allowed-pages page-patterns)

Adds page_patterns to the set of allowed pages. Requests from these pages are not intercepted by the extension. These are persisted across browser sessions. Note: MAX_NUMBER_OF_ALLOWED_PAGES is the maximum number of allowed page an extension can add. Also, adding page patterns is atomic. In case of an error, no page pattern is added.

|page-patterns| - Array of match patterns which are to be allowed.

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.

https://developer.chrome.com/extensions/declarativeNetRequest#method-addAllowedPages.

Adds page_patterns to the set of allowed pages. Requests from these pages are not intercepted by the extension. These are
persisted across browser sessions. Note:  MAX_NUMBER_OF_ALLOWED_PAGES is the maximum number of allowed page an extension
can add. Also, adding page patterns is atomic. In case of an error, no page pattern is added.

  |page-patterns| - Array of match patterns which are to be allowed.

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.

https://developer.chrome.com/extensions/declarativeNetRequest#method-addAllowedPages.
sourceraw docstring

add-allowed-pages*cljs

(add-allowed-pages* config page-patterns)
source

api-tableclj

source

gen-callclj

source

gen-wrapclj/smacro

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

get-allowed-pagesclj/smacro

(get-allowed-pages)

Returns the current set of allowed pages.

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| - https://developer.chrome.com/extensions/declarativeNetRequest#property-callback-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.

https://developer.chrome.com/extensions/declarativeNetRequest#method-getAllowedPages.

Returns the current set of allowed pages.

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| - https://developer.chrome.com/extensions/declarativeNetRequest#property-callback-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.

https://developer.chrome.com/extensions/declarativeNetRequest#method-getAllowedPages.
sourceraw docstring

get-allowed-pages*cljs

(get-allowed-pages* config)
source

get-max-number-of-allowed-pagesclj/smacro

(get-max-number-of-allowed-pages)
The maximum number of allowed pages that an extension can add.

https://developer.chrome.com/extensions/declarativeNetRequest#property-MAX_NUMBER_OF_ALLOWED_PAGES.
sourceraw docstring

get-max-number-of-rulesclj/smacro

(get-max-number-of-rules)

The maximum number of rules that an extension can specify in the rule resources file. Any excess rules will be ignored and an install warning will be raised.

https://developer.chrome.com/extensions/declarativeNetRequest#property-MAX_NUMBER_OF_RULES.

The maximum number of rules that an extension can specify in the rule resources file. Any excess rules will be ignored and
an install warning will be raised.

https://developer.chrome.com/extensions/declarativeNetRequest#property-MAX_NUMBER_OF_RULES.
sourceraw docstring

max-number-of-allowed-pages*cljs

(max-number-of-allowed-pages* config)
source

max-number-of-rules*cljs

(max-number-of-rules* config)
source

remove-allowed-pagesclj/smacro

(remove-allowed-pages page-patterns)

Removes page_patterns from the set of allowed pages. Note: Removing page patterns is atomic. In case of an error, no page pattern is removed.

|page-patterns| - Array of match patterns which are to removed.

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.

https://developer.chrome.com/extensions/declarativeNetRequest#method-removeAllowedPages.

Removes page_patterns from the set of allowed pages. Note: Removing page patterns is atomic. In case of an error, no page
pattern is removed.

  |page-patterns| - Array of match patterns which are to removed.

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.

https://developer.chrome.com/extensions/declarativeNetRequest#method-removeAllowedPages.
sourceraw docstring

remove-allowed-pages*cljs

(remove-allowed-pages* config page-patterns)
source

tap-all-eventsclj/smacro

(tap-all-events chan)

Taps all valid non-deprecated events in chromex.ext.declarative-net-request namespace.

Taps all valid non-deprecated events in chromex.ext.declarative-net-request namespace.
sourceraw docstring

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

× close