Skip to content

Latest commit

 

History

History
2552 lines (1743 loc) · 71.3 KB

about-scriptlets.md

File metadata and controls

2552 lines (1743 loc) · 71.3 KB

Available Scriptlets


⚡️ abort-current-inline-script

Added in v1.0.4.

Aborts an inline script when it attempts to read or write to the specified property AND when the contents of the <script> element contains the specified text or matches the regular expression.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#abort-current-inline-scriptjs-

Related ABP source: https://gitlab.com/eyeo/snippets/-/blob/main/source/behavioral/abort-current-inline-script.js

Syntax

example.org#%#//scriptlet('abort-current-inline-script', property[, search])
  • property — required, path to a property (joined with . if needed). The property must be attached to window
  • search — optional, string or regular expression that must match the inline script content. Defaults to abort all scripts which are trying to access the specified property. Invalid regular expression will cause exit and rule will not work.

Note please that to abort the inline script with addEventListener in it, property should be set as EventTarget.prototype.addEventListener, not just addEventListener.

Examples

  1. Aborts all inline scripts trying to access window.alert

    example.org#%#//scriptlet('abort-current-inline-script', 'alert')
  2. Aborts inline scripts which are trying to access window.alert and contain Hello, world

    example.org#%#//scriptlet('abort-current-inline-script', 'alert', 'Hello, world')

    For instance, the following script will be aborted:

    <script>alert("Hello, world");</script>
  3. Aborts inline scripts which are trying to access window.alert and match regexp /Hello.+world/

    example.org#%#//scriptlet('abort-current-inline-script', 'alert', '/Hello.+world/')

    For instance, the following scripts will be aborted:

    <script>alert("Hello, big world");</script>
    <script>alert("Hello, little world");</script>

    And this script will not be aborted:

    <script>alert("Hi, little world");</script>

Scriptlet source


⚡️ abort-on-property-read

Added in v1.0.4.

Aborts a script when it attempts to read the specified property.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#abort-on-property-readjs-

Related ABP source: https://gitlab.com/eyeo/snippets/-/blob/main/source/behavioral/abort-on-property-read.js

Syntax

example.org#%#//scriptlet('abort-on-property-read', property)
  • property — required, path to a property (joined with . if needed). The property must be attached to window

Examples

! Aborts script when it tries to access `window.alert`
example.org#%#//scriptlet('abort-on-property-read', 'alert')

! Aborts script when it tries to access `navigator.language`
example.org#%#//scriptlet('abort-on-property-read', 'navigator.language')

Scriptlet source


⚡️ abort-on-property-write

Added in v1.0.4.

Aborts a script when it attempts to write the specified property.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#abort-on-property-writejs-

Related ABP source: https://gitlab.com/eyeo/snippets/-/blob/main/source/behavioral/abort-on-property-write.js

Syntax

example.org#%#//scriptlet('abort-on-property-write', property)
  • property — required, path to a property (joined with . if needed). The property must be attached to window

Examples

! Aborts script when it tries to set `window.adblock` value
example.org#%#//scriptlet('abort-on-property-write', 'adblock')

Scriptlet source


⚡️ abort-on-stack-trace

Added in v1.5.0.

Aborts a script when it attempts to utilize (read or write to) the specified property and it's error stack trace contains given value.

Related UBO scriptlet: https://github.com/gorhill/uBlock-for-firefox-legacy/commit/7099186ae54e70b588d5e99554a05d783cabc8ff

Syntax

example.com#%#//scriptlet('abort-on-stack-trace', property, stack)
  • property — required, path to a property. The property must be attached to window.
  • stack — required, string that must match the current function call stack trace.
    • values to abort inline or injected script, accordingly:
      • inlineScript
      • injectedScript

Examples

  1. Aborts script when it tries to access window.Ya and it's error stack trace contains test.js

    example.org#%#//scriptlet('abort-on-stack-trace', 'Ya', 'test.js')
  2. Aborts script when it tries to access window.Ya.videoAd and it's error stack trace contains test.js

    example.org#%#//scriptlet('abort-on-stack-trace', 'Ya.videoAd', 'test.js')
  3. Aborts script when stack trace matches with any of these parameters

    example.org#%#//scriptlet('abort-on-stack-trace', 'Ya', 'yandexFuncName')
    example.org#%#//scriptlet('abort-on-stack-trace', 'Ya', 'yandexScriptName')
  4. Aborts script when it tries to access window.Ya and it's an inline script

    example.org#%#//scriptlet('abort-on-stack-trace', 'Ya', 'inlineScript')
  5. Aborts script when it tries to access window.Ya and it's an injected script

    example.org#%#//scriptlet('abort-on-stack-trace', 'Ya', 'injectedScript')

Scriptlet source


⚡️ adjust-setInterval

Added in v1.0.4.

Adjusts delay for specified setInterval() callbacks.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#nano-setinterval-boosterjs-

Syntax

example.org#%#//scriptlet('adjust-setInterval'[, matchCallback [, matchDelay[, boost]]])
  • matchCallback — optional, string or regular expression for stringified callback matching; defaults to match all callbacks; invalid regular expression will cause exit and rule will not work
  • matchDelay — optional, defaults to 1000, matching setInterval delay; decimal integer OR '*' for any delay
  • boost — optional, default to 0.05, float, capped at 1000 times for up and 50 for down (0.001...50), setInterval delay multiplier

Examples

  1. Adjust all setInterval() x20 times where delay equal 1000ms

    example.org#%#//scriptlet('adjust-setInterval')
  2. Adjust all setInterval() x20 times where callback matched with example and delay equal 1000ms

    example.org#%#//scriptlet('adjust-setInterval', 'example')
  3. Adjust all setInterval() x20 times where callback matched with example and delay equal 400ms

    example.org#%#//scriptlet('adjust-setInterval', 'example', '400')
  4. Slow down setInterval() x2 times where callback matched with example and delay equal 1000ms

    example.org#%#//scriptlet('adjust-setInterval', 'example', '', '2')
  5. Adjust all setInterval() x50 times where delay equal 2000ms

    example.org#%#//scriptlet('adjust-setInterval', '', '2000', '0.02')
  6. Adjust all setInterval() x1000 times where delay equal 2000ms

    example.org#%#//scriptlet('adjust-setInterval', '', '2000', '0.001')
  7. Adjust all setInterval() x50 times where delay is randomized

    example.org#%#//scriptlet('adjust-setInterval', '', '*', '0.02')

Scriptlet source


⚡️ adjust-setTimeout

Added in v1.0.4.

Adjusts delay for specified setTimeout() callbacks.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#nano-settimeout-boosterjs-

Syntax

example.org#%#//scriptlet('adjust-setTimeout'[, matchCallback [, matchDelay[, boost]]])
  • matchCallback — optional, string or regular expression for stringified callback matching; defaults to match all callbacks; invalid regular expression will cause exit and rule will not work
  • matchDelay — optional, defaults to 1000, matching setTimeout delay; decimal integer OR '*' for any delay
  • boost — optional, default to 0.05, float, capped at 1000 times for up and 50 for down (0.001...50), setTimeout delay multiplier

Examples

  1. Adjust all setTimeout() x20 times where timeout equal 1000ms

    example.org#%#//scriptlet('adjust-setTimeout')
  2. Adjust all setTimeout() x20 times where callback matched with example and timeout equal 1000ms

    example.org#%#//scriptlet('adjust-setTimeout', 'example')
  3. Adjust all setTimeout() x20 times where callback matched with example and timeout equal 400ms

    example.org#%#//scriptlet('adjust-setTimeout', 'example', '400')
  4. Slow down setTimeout() x2 times where callback matched with example and timeout equal 1000ms

    example.org#%#//scriptlet('adjust-setTimeout', 'example', '', '2')
  5. Adjust all setTimeout() x50 times where timeout equal 2000ms

    example.org#%#//scriptlet('adjust-setTimeout', '', '2000', '0.02')
  6. Adjust all setTimeout() x1000 times where timeout equal 2000ms

    example.org#%#//scriptlet('adjust-setTimeout', '', '2000', '0.001')
  7. Adjust all setTimeout() x20 times where callback matched with test and timeout is randomized

    example.org#%#//scriptlet('adjust-setTimeout', 'test', '*')

Scriptlet source


⚡️ close-window

Added in v1.5.0.

Closes the browser tab immediately.

window.close() usage is restricted in the Chrome browser. In this case tab will only be closed when using AdGuard Browser extension.

Syntax

example.org#%#//scriptlet('close-window'[, path])
  • path — optional, string or regular expression matching the current location's path: window.location.pathname + window.location.search. Defaults to execute on every page.

Examples

! closes any example.org tab
example.org#%#//scriptlet('close-window')

! closes specific example.org tab
example.org#%#//scriptlet('close-window', '/example-page.html')

Scriptlet source


⚡️ debug-current-inline-script

Added in v1.0.4.

This scriptlet is basically the same as abort-current-inline-script, but instead of aborting it starts the debugger.

It is not allowed for prod versions of filter lists.

Examples

! Aborts script when it tries to access `window.alert`
example.org#%#//scriptlet('debug-current-inline-script', 'alert')

Scriptlet source


⚡️ debug-on-property-read

Added in v1.0.4.

This scriptlet is basically the same as abort-on-property-read, but instead of aborting it starts the debugger.

It is not allowed for prod versions of filter lists.

Examples

! Debug script if it tries to access `window.alert`
example.org#%#//scriptlet('debug-on-property-read', 'alert')

! or `window.open`
example.org#%#//scriptlet('debug-on-property-read', 'open')

Scriptlet source


⚡️ debug-on-property-write

Added in v1.0.4.

This scriptlet is basically the same as abort-on-property-write, but instead of aborting it starts the debugger.

It is not allowed for prod versions of filter lists.

Examples

! Aborts script when it tries to write in property `window.test`
example.org#%#//scriptlet('debug-on-property-write', 'test')

Scriptlet source


⚡️ dir-string

Added in v1.0.4.

Wraps the console.dir API to call the toString method of the argument. There are several adblock circumvention systems that detect browser devtools and hide themselves. Therefore, if we force them to think that devtools are open (using this scriptlet), it will automatically disable the adblock circumvention script.

Syntax

example.org#%#//scriptlet('dir-string'[, times])
  • times — optional, the number of times to call the toString method of the argument to console.dir

Examples

! Run 2 times
example.org#%#//scriptlet('dir-string', '2')

Scriptlet source


⚡️ disable-newtab-links

Added in v1.0.4.

Prevents opening new tabs and windows if there is target attribute in element.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#disable-newtab-linksjs-

Syntax

example.org#%#//scriptlet('disable-newtab-links')

Scriptlet source


⚡️ evaldata-prune

Added in v1.9.37.

Removes specified properties from the result of calling eval (if payloads contains Object) and returns to the caller.

Related UBO scriptlet: https://github.com/gorhill/uBlock/commit/c8de9041917b61035171e454df886706f27fc4f3

Syntax

example.org#%#//scriptlet('evaldata-prune'[, propsToRemove [, obligatoryProps [, stack]]])
  • propsToRemove — optional, string of space-separated properties to remove
  • obligatoryProps — optional, string of space-separated properties which must be all present for the pruning to occur
  • stack — optional, string or regular expression that must match the current function call stack trace; if regular expression is invalid it will be skipped

Note please that you can use wildcard * for chain property name, e.g. ad.*.src instead of ad.0.src ad.1.src ad.2.src.

Examples

  1. Removes property example from the payload of the eval call

    example.org#%#//scriptlet('evaldata-prune', 'example')

    For instance, the following call will return { one: 1}

    eval({ one: 1, example: true })
  2. If there are no specified properties in the payload of eval call, pruning will NOT occur

    example.org#%#//scriptlet('evaldata-prune', 'one', 'obligatoryProp')

    For instance, the following call will return { one: 1, two: 2}

    JSON.parse('{"one":1,"two":2}')
  3. A property in a list of properties can be a chain of properties

    example.org#%#//scriptlet('evaldata-prune', 'a.b', 'ads.url.first')
  4. Removes property content.ad from the payload of eval call if its error stack trace contains test.js

    example.org#%#//scriptlet('evaldata-prune', 'content.ad', '', 'test.js')
  5. A property in a list of properties can be a chain of properties with wildcard in it

    example.org#%#//scriptlet('evaldata-prune', 'content.*.media.src', 'content.*.media.ad')
  6. Call with no arguments will log the current hostname and object payload at the console

    example.org#%#//scriptlet('evaldata-prune')
  7. Call with only second argument will log the current hostname and matched object payload at the console

    example.org#%#//scriptlet('evaldata-prune', '', '"id":"117458"')

Scriptlet source


⚡️ hide-in-shadow-dom

Added in v1.3.0.

Hides elements inside open shadow DOM elements.

Syntax

example.org#%#//scriptlet('hide-in-shadow-dom', selector[, baseSelector])
  • selector — required, CSS selector of element in shadow-dom to hide
  • baseSelector — optional, selector of specific page DOM element, narrows down the part of the page DOM where shadow-dom host supposed to be, defaults to document.documentElement

baseSelector should match element of the page DOM, but not of shadow DOM.

Examples

! hides menu bar
example.com#%#//scriptlet('hide-in-shadow-dom', '.storyAd', '#app')

! hides floating element
example.com#%#//scriptlet('hide-in-shadow-dom', '.contact-fab')

Scriptlet source


⚡️ inject-css-in-shadow-dom

Added in v1.8.2.

Injects CSS rule into selected Shadow DOM subtrees on a page

Syntax

example.org#%#//scriptlet('inject-css-in-shadow-dom', cssRule[, hostSelector])
  • cssRule — required, string representing a single css rule
  • hostSelector — optional, string, selector to match shadow host elements. CSS rule will be only applied to shadow roots inside these elements. Defaults to injecting css rule into all available roots.

Examples

  1. Apply style to all shadow dom subtrees

    example.org#%#//scriptlet('inject-css-in-shadow-dom', '#advertisement { display: none !important; }')
  2. Apply style to a specific shadow dom subtree

    example.org#%#//scriptlet('inject-css-in-shadow-dom', '#content { margin-top: 0 !important; }', '#banner')

Scriptlet source


⚡️ json-prune

Added in v1.1.0.

Removes specified properties from the result of calling JSON.parse and returns the caller.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#json-prunejs-

Related ABP source: https://gitlab.com/eyeo/snippets/-/blob/main/source/behavioral/json-prune.js

Syntax

example.org#%#//scriptlet('json-prune'[, propsToRemove [, obligatoryProps [, stack]]])
  • propsToRemove — optional, string of space-separated properties to remove
  • obligatoryProps — optional, string of space-separated properties which must be all present for the pruning to occur
  • stack — optional, string or regular expression that must match the current function call stack trace; if regular expression is invalid it will be skipped

Note please that you can use wildcard * for chain property name, e.g. ad.*.src instead of ad.0.src ad.1.src ad.2.src.

Examples

  1. Removes property example from the results of JSON.parse call

    example.org#%#//scriptlet('json-prune', 'example')

    For instance, the following call will return { one: 1}

    JSON.parse('{"one":1,"example":true}')
  2. If there are no specified properties in the result of JSON.parse call, pruning will NOT occur

    example.org#%#//scriptlet('json-prune', 'one', 'obligatoryProp')

    For instance, the following call will return { one: 1, two: 2}

    JSON.parse('{"one":1,"two":2}')
  3. A property in a list of properties can be a chain of properties

    example.org#%#//scriptlet('json-prune', 'a.b', 'ads.url.first')
  4. Removes property content.ad from the results of JSON.parse call if its error stack trace contains test.js

    example.org#%#//scriptlet('json-prune', 'content.ad', '', 'test.js')
  5. A property in a list of properties can be a chain of properties with wildcard in it

    example.org#%#//scriptlet('json-prune', 'content.*.media.src', 'content.*.media.ad')
  6. Call with no arguments will log the current hostname and json payload at the console

    example.org#%#//scriptlet('json-prune')
  7. Call with only second argument will log the current hostname and matched json payload at the console

    example.org#%#//scriptlet('json-prune', '', '"id":"117458"')

Scriptlet source


⚡️ log-addEventListener

Added in v1.0.4.

Logs all addEventListener calls to the console.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#addeventlistener-loggerjs-

Syntax

example.org#%#//scriptlet('log-addEventListener')

Scriptlet source


⚡️ log-eval

Added in v1.0.4.

Logs all eval() or new Function() calls to the console.

Syntax

example.org#%#//scriptlet('log-eval')

Scriptlet source


⚡️ log-on-stack-trace

Added in v1.5.0.

This scriptlet is basically the same as abort-on-stack-trace, but instead of aborting it logs:

  • function and source script names pairs that access the given property
  • was that get or set attempt
  • script being injected or inline

Syntax

example.com#%#//scriptlet('log-on-stack-trace', 'property')
  • property — required, path to a property. The property must be attached to window.

Scriptlet source


⚡️ log

Added in v1.0.4.

A simple scriptlet which only purpose is to print arguments to console. This scriptlet can be helpful for debugging and troubleshooting other scriptlets.

Related ABP source: https://gitlab.com/eyeo/snippets/-/blob/main/source/introspection/log.js

Examples

example.org#%#//scriptlet('log', 'arg1', 'arg2')

Scriptlet source


⚡️ m3u-prune

Added in v1.9.1.

Removes content from the specified M3U file.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#m3u-prunejs-

Syntax

example.org#%#//scriptlet('m3u-prune'[, propsToRemove[, urlToMatch]])
  • propsToRemove — optional, string or regular expression to match the URL line (segment) which will be removed alongside with its tags
  • urlToMatch — optional, string or regular expression for matching the request's URL

Usage with no arguments will log response payload and URL to browser console; it may be useful for debugging but it is not allowed for prod versions of filter lists.

Examples

  1. Removes a tag which contains example.com/video/, from all requests

    example.org#%#//scriptlet('m3u-prune', 'example.com/video/')
  2. Removes a line which contains example.com/video/, only if request's URL contains .m3u8

    example.org#%#//scriptlet('m3u-prune', 'example.com/video/', '.m3u8')
  3. Call with no arguments will log response payload and URL at the console

    example.org#%#//scriptlet('m3u-prune')
  4. Call with only urlToMatch argument will log response payload and URL only for the matched URL

    example.org#%#//scriptlet('m3u-prune', '', '.m3u8')

Scriptlet source


⚡️ no-topics

Added in v1.6.18.

Prevents using the Topics API. https://developer.chrome.com/docs/privacy-sandbox/topics/

Syntax

example.org#%#//scriptlet('no-topics')

Scriptlet source


⚡️ noeval

Added in v1.0.4.

Prevents page to use eval. Notifies about attempts in the console

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#noevaljs-

It also can be used as $redirect rules sometimes. See redirect description.

Syntax

example.org#%#//scriptlet('noeval')

Scriptlet source


⚡️ nowebrtc

Added in v1.0.4.

Disables WebRTC by overriding RTCPeerConnection. The overridden function will log every attempt to create a new connection.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#nowebrtcjs-

Syntax

example.org#%#//scriptlet('nowebrtc')

Scriptlet source


⚡️ prevent-addEventListener

Added in v1.0.4.

Prevents adding event listeners for the specified events and callbacks.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#addeventlistener-defuserjs-

Related ABP snippet: https://gitlab.com/eyeo/snippets/-/blob/main/source/behavioral/prevent-listener.js

Syntax

example.org#%#//scriptlet('prevent-addEventListener'[, typeSearch[, listenerSearch]])
  • typeSearch — optional, string or regular expression matching the type (event name); defaults to match all types; invalid regular expression will cause exit and rule will not work
  • listenerSearch — optional, string or regular expression matching the listener function body; defaults to match all listeners; invalid regular expression will cause exit and rule will not work

Examples

  1. Prevent all click listeners

    example.org#%#//scriptlet('prevent-addEventListener', 'click')
  2. Prevent 'click' listeners with the callback body containing searchString

    example.org#%#//scriptlet('prevent-addEventListener', 'click', 'searchString')

    For instance, this listener will not be called:

    el.addEventListener('click', () => {
        window.test = 'searchString';
    });

Scriptlet source


⚡️ prevent-adfly

Added in v1.0.4.

Prevents anti-adblock scripts on adfly short links.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#adfly-defuserjs-

Syntax

example.org#%#//scriptlet('prevent-adfly')

Scriptlet source


⚡️ prevent-bab

Added in v1.0.4.

Prevents BlockAdblock script from detecting an ad blocker.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#bab-defuserjs-

It also can be used as $redirect sometimes. See redirect description.

Syntax

example.org#%#//scriptlet('prevent-bab')

Scriptlet source


⚡️ prevent-element-src-loading

Added in v1.6.2.

Prevents target element source loading without triggering 'onerror' listeners and not breaking 'onload' ones.

Syntax

example.org#%#//scriptlet('prevent-element-src-loading', tagName, match)
  • tagName — required, case-insensitive target element tagName which src property resource loading will be silently prevented; possible values:
    • script
    • img
    • iframe
    • link
  • match — required, string or regular expression for matching the element's URL;

Examples

  1. Prevent script source loading

    example.org#%#//scriptlet('prevent-element-src-loading', 'script' ,'adsbygoogle')

Scriptlet source


⚡️ prevent-eval-if

Added in v1.0.4.

Prevents page to use eval matching payload.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#noeval-ifjs-

Syntax

example.org#%#//scriptlet('prevent-eval-if'[, search])
  • search — optional, string or regular expression matching the stringified eval payload; defaults to match all stringified eval payloads; invalid regular expression will cause exit and rule will not work

Examples

! Prevents eval if it matches 'test'
example.org#%#//scriptlet('prevent-eval-if', 'test')

Scriptlet source


⚡️ prevent-fab-3.2.0

Added in v1.0.4.

Prevents execution of the FAB script v3.2.0.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#fuckadblockjs-320-

Syntax

example.org#%#//scriptlet('prevent-fab-3.2.0')

Scriptlet source


⚡️ prevent-fetch

Added in v1.3.18.

Prevents fetch calls if all given parameters match.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#no-fetch-ifjs-

Syntax

example.org#%#//scriptlet('prevent-fetch'[, propsToMatch[, responseBody[, responseType]]])
  • propsToMatch — optional, string of space-separated properties to match; possible props:
    • string or regular expression for matching the URL passed to fetch call; empty string, wildcard * or invalid regular expression will match all fetch calls
    • colon-separated pairs name:value where
      • name is init option name
      • value is string or regular expression for matching the value of the option passed to fetch call; invalid regular expression will cause any value matching
  • responseBody — optional, string for defining response body value, defaults to emptyObj. Possible values:
    • emptyObj — empty object
    • emptyArr — empty array
    • emptyStr — empty string
  • responseType — optional, string for defining response type, original response type is used if not specified. Possible values:
    • default
    • opaque

Usage with no arguments will log fetch calls to browser console; it may be useful for debugging but it is not allowed for prod versions of filter lists.

Examples

  1. Log all fetch calls

    example.org#%#//scriptlet('prevent-fetch')
  2. Prevent all fetch calls

    example.org#%#//scriptlet('prevent-fetch', '*')
    ! or
    example.org#%#//scriptlet('prevent-fetch', '')
  3. Prevent fetch call for specific url

    example.org#%#//scriptlet('prevent-fetch', '/url\\.part/')
  4. Prevent fetch call for specific request method

    example.org#%#//scriptlet('prevent-fetch', 'method:HEAD')
  5. Prevent fetch call for specific url and request method

    example.org#%#//scriptlet('prevent-fetch', '/specified_url_part/ method:/HEAD|GET/')
  6. Prevent fetch call and specify response body value

    ! Specify response body for fetch call to a specific url
    example.org#%#//scriptlet('prevent-fetch', '/specified_url_part/ method:/HEAD|GET/', 'emptyArr')
    
    ! Specify response body for all fetch calls
    example.org#%#//scriptlet('prevent-fetch', '', 'emptyArr')
  7. Prevent all fetch calls and specify response type value

    example.org#%#//scriptlet('prevent-fetch', '*', '', 'opaque')

Scriptlet source


⚡️ prevent-popads-net

Added in v1.0.4.

Aborts on property write (PopAds, popns), throws reference error with random id.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#popadsnetjs-

Syntax

example.org#%#//scriptlet('prevent-popads-net')

Scriptlet source


⚡️ prevent-refresh

Added in v1.6.2.

Prevents reloading of a document through a meta "refresh" tag.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#refresh-defuserjs-

Syntax

example.org#%#//scriptlet('prevent-refresh'[, delay])
  • delay — optional, number of seconds for delay that indicates when scriptlet should run. If not set, source tag value will be applied.

Examples

  1. Prevent reloading of a document through a meta "refresh" tag

    example.org#%#//scriptlet('prevent-refresh')
  2. Prevent reloading of a document with delay

    example.com#%#//scriptlet('prevent-refresh', 3)

Scriptlet source


⚡️ prevent-requestAnimationFrame

Added in v1.1.15.

Prevents a requestAnimationFrame call if the text of the callback is matching the specified search string which does not start with !; otherwise mismatched calls should be defused.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#no-requestanimationframe-ifjs-

Syntax

example.org#%#//scriptlet('prevent-requestAnimationFrame'[, search])
  • search — optional, string or regular expression; invalid regular expression will be skipped and all callbacks will be matched. If starts with !, scriptlet will not match the stringified callback but all other will be defused. If do not start with !, the stringified callback will be matched.

Call with no argument will log all requestAnimationFrame calls, it may be useful for debugging but it is not allowed for prod versions of filter lists.

Examples

  1. Prevents requestAnimationFrame calls if the callback matches /\.test/

    example.org#%#//scriptlet('prevent-requestAnimationFrame', '/\.test/')

    For instance, the following call will be prevented:

    var times = 0;
    requestAnimationFrame(function change() {
        window.test = 'new value';
        if (times < 2) {
            times += 1;
            requestAnimationFrame(change);
        }
    });
  2. Prevents requestAnimationFrame calls if does not match 'check'

    example.org#%#//scriptlet('prevent-requestAnimationFrame', '!check')

    For instance, only the first call will be prevented:

    var timesFirst = 0;
    requestAnimationFrame(function changeFirst() {
        window.check = 'should not be prevented';
        if (timesFirst < 2) {
            timesFirst += 1;
            requestAnimationFrame(changeFirst);
        }
    });
    
    var timesSecond = 0;
    requestAnimationFrame(function changeSecond() {
        window.second = 'should be prevented';
        if (timesSecond < 2) {
            timesSecond += 1;
            requestAnimationFrame(changeSecond);
        }
    });

Scriptlet source


⚡️ prevent-setInterval

Added in v1.0.4.

Prevents a setInterval call if:

  1. The text of the callback is matching the specified matchCallback string/regexp which does not start with !; otherwise mismatched calls should be defused.
  2. The delay is matching the specified matchDelay; otherwise mismatched calls should be defused.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#no-setinterval-ifjs-

Syntax

example.org#%#//scriptlet('prevent-setInterval'[, matchCallback[, matchDelay]])

Call with no arguments will log all setInterval calls (log-setInterval superseding), it may be useful for debugging but it is not allowed for prod versions of filter lists.

  • matchCallback — optional, string or regular expression; invalid regular expression will be skipped and all callbacks will be matched. If starts with !, scriptlet will not match the stringified callback but all other will be defused. If do not start with !, the stringified callback will be matched. If not set, prevents all setInterval calls due to specified matchDelay.
  • matchDelay — optional, must be an integer. If starts with !, scriptlet will not match the delay but all other will be defused. If do not start with !, the delay passed to the setInterval call will be matched. Decimal delay values will be rounded down, e.g 10.95 will be matched by matchDelay with value 10.

If prevent-setInterval log looks like setInterval(undefined, 1000), it means that no callback was passed to setInterval() and that's not scriptlet issue and obviously it can not be matched by matchCallback.

Examples

  1. Prevents setInterval calls if the callback matches /\.test/ regardless of the delay

    example.org#%#//scriptlet('prevent-setInterval', '/\.test/')

    For instance, the following call will be prevented:

    setInterval(function () {
        window.test = "value";
    }, 100);
  2. Prevents setInterval calls if the callback does not contain value

    example.org#%#//scriptlet('prevent-setInterval', '!value')

    For instance, only the first of the following calls will be prevented:

    setInterval(function () {
        window.test = "test -- prevented";
    }, 300);
    setInterval(function () {
        window.test = "value -- executed";
    }, 400);
    setInterval(function () {
        window.value = "test -- executed";
    }, 500);
  3. Prevents setInterval calls if the callback contains value and the delay is not set to 300

    example.org#%#//scriptlet('prevent-setInterval', 'value', '!300')

    For instance, only the first of the following calls will not be prevented:

    setInterval(function () {
        window.test = "value 1 -- executed";
    }, 300);
    setInterval(function () {
        window.test = "value 2 -- prevented";
    }, 400);
    setInterval(function () {
        window.test = "value 3 -- prevented";
    }, 500);
  4. Prevents setInterval calls if the callback does not contain value and the delay is not set to 300

    example.org#%#//scriptlet('prevent-setInterval', '!value', '!300')

    For instance, only the second of the following calls will be prevented:

    setInterval(function () {
        window.test = "test -- executed";
    }, 300);
    setInterval(function () {
        window.test = "test -- prevented";
    }, 400);
    setInterval(function () {
        window.test = "value -- executed";
    }, 400);
    setInterval(function () {
        window.value = "test -- executed";
    }, 500);
  5. Prevents setInterval calls if the callback contains value and delay is a decimal number

    example.org#%#//scriptlet('prevent-setInterval', 'value', '300')

    For instance, the following calls will be prevented:

    setInterval(function () {
        window.test = "value";
    }, 300);
    setInterval(function () {
        window.test = "value";
    }, 300 + Math.random());

Scriptlet source


⚡️ prevent-setTimeout

Added in v1.0.4.

Prevents a setTimeout call if:

  1. The text of the callback is matching the specified matchCallback string/regexp which does not start with !; otherwise mismatched calls should be defused.
  2. The delay is matching the specified matchDelay; otherwise mismatched calls should be defused.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#no-settimeout-ifjs-

Syntax

example.org#%#//scriptlet('prevent-setTimeout'[, matchCallback[, matchDelay]])

Call with no arguments will log all setTimeout calls (log-setTimeout superseding), it may be useful for debugging but it is not allowed for prod versions of filter lists.

  • matchCallback — optional, string or regular expression; invalid regular expression will be skipped and all callbacks will be matched. If starts with !, scriptlet will not match the stringified callback but all other will be defused. If do not start with !, the stringified callback will be matched. If not set, prevents all setTimeout calls due to specified matchDelay.
  • matchDelay — optional, must be an integer. If starts with !, scriptlet will not match the delay but all other will be defused. If do not start with !, the delay passed to the setTimeout call will be matched. Decimal delay values will be rounded down, e.g 10.95 will be matched by matchDelay with value 10.

If prevent-setTimeout log looks like setTimeout(undefined, 1000), it means that no callback was passed to setTimeout() and that's not scriptlet issue and obviously it can not be matched by matchCallback.

Examples

  1. Prevents setTimeout calls if the callback matches /\.test/ regardless of the delay

    example.org#%#//scriptlet('prevent-setTimeout', '/\.test/')

    For instance, the following call will be prevented:

    setTimeout(function () {
        window.test = "value";
    }, 100);
  2. Prevents setTimeout calls if the callback does not contain value

    example.org#%#//scriptlet('prevent-setTimeout', '!value')

    For instance, only the first of the following calls will be prevented:

    setTimeout(function () {
        window.test = "test -- prevented";
    }, 300);
    setTimeout(function () {
        window.test = "value -- executed";
    }, 400);
    setTimeout(function () {
        window.value = "test -- executed";
    }, 500);
  3. Prevents setTimeout calls if the callback contains value and the delay is not set to 300

    example.org#%#//scriptlet('prevent-setTimeout', 'value', '!300')

    For instance, only the first of the following calls will not be prevented:

    setTimeout(function () {
        window.test = "value 1 -- executed";
    }, 300);
    setTimeout(function () {
        window.test = "value 2 -- prevented";
    }, 400);
    setTimeout(function () {
        window.test = "value 3 -- prevented";
    }, 500);
  4. Prevents setTimeout calls if the callback does not contain value and the delay is not set to 300

    example.org#%#//scriptlet('prevent-setTimeout', '!value', '!300')

    For instance, only the second of the following calls will be prevented:

    setTimeout(function () {
        window.test = "test -- executed";
    }, 300);
    setTimeout(function () {
        window.test = "test -- prevented";
    }, 400);
    setTimeout(function () {
        window.test = "value -- executed";
    }, 400);
    setTimeout(function () {
        window.value = "test -- executed";
    }, 500);
  5. Prevents setTimeout calls if the callback contains value and delay is a decimal

    example.org#%#//scriptlet('prevent-setTimeout', 'value', '300')

    For instance, the following calls will be prevented:

    setTimeout(function () {
        window.test = "value";
    }, 300);
    setTimeout(function () {
        window.test = "value";
    }, 300 + Math.random());

Scriptlet source


⚡️ prevent-window-open

Added in v1.0.4.

Prevents window.open calls when URL either matches or not matches the specified string/regexp. Using it without parameters prevents all window.open calls.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#no-window-open-ifjs-

Syntax

example.org#%#//scriptlet('prevent-window-open'[, match[, delay[, replacement]]])
  • match — optional, string or regular expression. If not set or regular expression is invalid, all window.open calls will be matched. If starts with !, scriptlet will not match the stringified callback but all other will be defused. If do not start with !, the stringified callback will be matched.
  • delay — optional, number of seconds. If not set, scriptlet will return null, otherwise valid sham window object as injected iframe will be returned for accessing its methods (blur(), focus() etc.) and will be removed after the delay.
  • replacement — optional, string; one of the predefined constants:
    • obj — for returning an object instead of default iframe; for cases when the page requires a valid window instance to be returned
    • log — for logging window.open calls; not allowed for prod versions of filter lists.

Examples

  1. Prevent all window.open calls

    example.org#%#//scriptlet('prevent-window-open')
  2. Prevent window.open for all URLs containing example

    example.org#%#//scriptlet('prevent-window-open', 'example')
  3. Prevent window.open for all URLs matching RegExp /example\./

    example.org#%#//scriptlet('prevent-window-open', '/example\./')
  4. Prevent window.open for all URLs NOT containing example

    example.org#%#//scriptlet('prevent-window-open', '!example')

Old syntax of prevent-window-open parameters

  • match — optional, defaults to "matching", any positive number or nothing for "matching", 0 or empty string for "not matching"
  • search — optional, string or regexp for matching the URL passed to window.open call; defaults to search all window.open call
  • replacement — optional, string to return prop value or property instead of window.open; defaults to return noopFunc.

Examples of old syntax

example.org#%#//scriptlet('prevent-window-open', '1', '/example\./')
example.org#%#//scriptlet('prevent-window-open', '0', 'example')
example.org#%#//scriptlet('prevent-window-open', '', '', 'trueFunc')
example.org#%#//scriptlet('prevent-window-open', '1', '', '{propName=noopFunc}')

For better compatibility with uBO, old syntax is not recommended to use.

Scriptlet source


⚡️ prevent-xhr

Added in v1.5.0.

Prevents xhr calls if all given parameters match.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#no-xhr-ifjs-

Syntax

example.org#%#//scriptlet('prevent-xhr'[, propsToMatch[, randomize]])
  • propsToMatch — optional, string of space-separated properties to match; possible props:
    • string or regular expression for matching the URL passed to XMLHttpRequest.open() call; empty string or wildcard * for all XMLHttpRequest.open() calls match
      • colon-separated pairs name:value where
        • name is XMLHttpRequest object property name
        • value is string or regular expression for matching the value of the option passed to XMLHttpRequest.open() call
  • randomize — defaults to false for empty responseText, optional argument to randomize responseText of matched XMLHttpRequest's response; possible values:
    • true to randomize responseText, random alphanumeric string of 10 symbols
    • colon-separated pair name:value string value to customize responseText data where
      • name — only length supported for now
      • value — range on numbers, for example 100-300, limited to 500000 characters

Usage with no arguments will log XMLHttpRequest objects to browser console; it may be useful for debugging but it is not allowed for prod versions of filter lists.

Examples

  1. Log all XMLHttpRequests

    example.org#%#//scriptlet('prevent-xhr')
  2. Prevent all XMLHttpRequests

    example.org#%#//scriptlet('prevent-xhr', '*')
    example.org#%#//scriptlet('prevent-xhr', '')
  3. Prevent XMLHttpRequests for specific url

    example.org#%#//scriptlet('prevent-xhr', 'example.org')
  4. Prevent XMLHttpRequests for specific request method

    example.org#%#//scriptlet('prevent-xhr', 'method:HEAD')
  5. Prevent XMLHttpRequests for specific url and specified request methods

    example.org#%#//scriptlet('prevent-xhr', 'example.org method:/HEAD|GET/')
  6. Prevent XMLHttpRequests for specific url and randomize it's response text

    example.org#%#//scriptlet('prevent-xhr', 'example.org', 'true')
  7. Prevent XMLHttpRequests for specific url and randomize it's response text with range

    example.org#%#//scriptlet('prevent-xhr', 'example.org', 'length:100-300')

Scriptlet source


⚡️ remove-attr

Added in v1.0.4.

Removes the specified attributes from DOM nodes. This scriptlet runs once when the page loads and after that periodically in order to DOM tree changes by default, or as specified by applying argument.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#remove-attrjs-

Syntax

example.org#%#//scriptlet('remove-attr', attrs[, selector, applying])
  • attrs — required, attribute or list of attributes joined by '|'
  • selector — optional, CSS selector, specifies DOM nodes from which the attributes will be removed
  • applying — optional, one or more space-separated flags that describe the way scriptlet apply, defaults to 'asap stay'; possible flags:
    • asap — runs as fast as possible once
    • complete — runs once after the whole page has been loaded
    • stay — as fast as possible and stays on the page observing possible DOM changes

Examples

  1. Removes by attribute

    example.org#%#//scriptlet('remove-attr', 'example|test')
    <!-- before -->
    <div example="true" test="true">Some text</div>
    
    <!-- after -->
    <div>Some text</div>
  2. Removes with specified selector

    example.org#%#//scriptlet('remove-attr', 'example', 'div[class="inner"]')
    <!-- before -->
    <div class="wrapper" example="true">
        <div class="inner" example="true">Some text</div>
    </div>
    
    <!-- after -->
    <div class="wrapper" example="true">
        <div class="inner">Some text</div>
    </div>
  3. Using flags

    example.org#%#//scriptlet('remove-attr', 'example', 'html', 'asap complete')

Scriptlet source


⚡️ remove-class

Added in v1.1.1.

Removes the specified classes from DOM nodes. This scriptlet runs once after the page loads and after that periodically in order to DOM tree changes.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#remove-classjs-

Syntax

example.org#%#//scriptlet('remove-class', classes[, selector, applying])
  • classes — required, class or list of classes separated by '|'
  • selector — optional, CSS selector, specifies DOM nodes from which the classes will be removed. If there is no selector, each class of classes independently will be removed from all nodes which has one
  • applying — optional, one or more space-separated flags that describe the way scriptlet apply, defaults to 'asap stay'; possible flags:
    • asap — runs as fast as possible once
    • complete — runs once after the whole page has been loaded
    • stay — as fast as possible and stays on the page observing possible DOM changes

Examples

  1. Removes by classes

    example.org#%#//scriptlet('remove-class', 'example|test')
    <!-- before -->
    <div id="first" class="nice test">Some text</div>
    <div id="second" class="rare example for test">Some text</div>
    <div id="third" class="testing better example">Some text</div>
    
    <!-- after -->
    <div id="first" class="nice">Some text</div>
    <div id="second" class="rare for">Some text</div>
    <div id="third" class="testing better">Some text</div>
  2. Removes with specified selector

    example.org#%#//scriptlet('remove-class', 'branding', 'div[class^="inner"]')
    <!-- before -->
    <div class="wrapper true branding">
        <div class="inner bad branding">Some text</div>
    </div>
    
    <!-- after -->
    <div class="wrapper true branding">
        <div class="inner bad">Some text</div>
    </div>
  3. Using flags

    example.org#%#//scriptlet('remove-class', 'branding', 'div[class^="inner"]', 'asap complete')

Scriptlet source


⚡️ remove-cookie

Added in v1.0.4.

Removes current page cookies by passed string matching with name. For current domain and subdomains. Runs on load and before unload.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#cookie-removerjs-

Related ABP source: https://gitlab.com/eyeo/snippets/-/blob/main/source/behavioral/cookie-remover.js

Syntax

example.org#%#//scriptlet('remove-cookie'[, match])
  • match — optional, string or regex matching the cookie name. If not specified all accessible cookies will be removed.

Examples

  1. Removes all cookies

    example.org#%#//scriptlet('remove-cookie')
  2. Removes cookies which name contains example string

    example.org#%#//scriptlet('remove-cookie', 'example')

    For instance this cookie will be removed:

    document.cookie = '__example=randomValue';

Scriptlet source


⚡️ remove-in-shadow-dom

Added in v1.3.14.

Removes elements inside open shadow DOM elements.

Syntax

example.org#%#//scriptlet('remove-in-shadow-dom', selector[, baseSelector])
  • selector — required, CSS selector of element in shadow-dom to remove
  • baseSelector — optional, selector of specific page DOM element, narrows down the part of the page DOM where shadow-dom host supposed to be, defaults to document.documentElement

baseSelector should match element of the page DOM, but not of shadow DOM.

Examples

! removes menu bar
virustotal.com#%#//scriptlet('remove-in-shadow-dom', 'iron-pages', 'vt-virustotal-app')

! removes floating element
virustotal.com#%#//scriptlet('remove-in-shadow-dom', 'vt-ui-contact-fab')

Scriptlet source


⚡️ remove-node-text

Added in v1.9.37.

Removes text from DOM nodes.

Related UBO scriptlet: https://github.com/gorhill/uBlock/commit/2bb446797a12086f2eebc0c8635b671b8b90c477

Syntax

example.org#%#//scriptlet('remove-node-text', nodeName, condition)
  • nodeName — required, string or RegExp, specifies DOM node name from which the text will be removed. Must target lowercased node names, e.g div instead of DIV.
  • textMatch — required, string or RegExp to match against node's text content. If matched, the whole text will be removed. Case sensitive.

Examples

  1. Remove node's text content:

    example.org#%#//scriptlet('remove-node-text', 'div', 'some text')
    <!-- before -->
    <div>some text</div>
    <span>some text</span>
    
    <!-- after -->
    <div></div   >
    <span>some text</span>
  2. Remove node's text content, matching both node name and condition by RegExp:

    example.org#%#//scriptlet('remove-node-text', '/[a-z]*[0-9]/', '/text/')
    <!-- before -->
    <qrce3>some text</qrce3>
    <span>some text</span>
    
    <!-- after -->
    <qrce3></qrce3>
    <span>some text</span>

Scriptlet source


⚡️ set-attr

Added in v1.5.0.

Sets the specified attribute on the specified elements. This scriptlet runs once when the page loads and after that and after that on DOM tree changes.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#set-attrjs-

Syntax

example.org#%#//scriptlet('set-attr', selector, attr[, value])
  • selector — required, CSS selector, specifies DOM nodes to set attributes on
  • attr — required, attribute to be set
  • value — the value to assign to the attribute, defaults to ''. Possible values:
    • '' — empty string
    • positive decimal integer <= 32767
    • true / false in any case variation

Examples

  1. Set attribute by selector

    example.org#%#//scriptlet('set-attr', 'div.class > a.class', 'test-attribute', '0')
    <!-- before -->
    <a class="class">Some text</div>
    
    <!-- after -->
    <a class="class" test-attribute="0">Some text</div>
  2. Set attribute without value

    example.org#%#//scriptlet('set-attr', 'div.class > a.class', 'test-attribute')
    <!-- before -->
    <a class="class">Some text</div>
    
    <!-- after -->
    <a class="class" test-attribute>Some text</div>
  3. Set attribute value to TRUE

    example.org#%#//scriptlet('set-attr', 'div.class > a.class', 'test-attribute', 'TRUE')
    <!-- before -->
    <a class="class">Some text</div>
    
    <!-- after -->
    <a class="class" test-attribute="TRUE">Some text</div>
  4. Set attribute value to fAlse

    example.org#%#//scriptlet('set-attr', 'div.class > a.class', 'test-attribute', 'fAlse')
    <!-- before -->
    <a class="class">Some text</div>
    
    <!-- after -->
    <a class="class" test-attribute="fAlse">Some text</div>

Scriptlet source


⚡️ set-constant

Added in v1.0.4.

Creates a constant property and assigns it one of the values from the predefined list.

Actually, it's not a constant. Please note, that it can be rewritten with a value of a different type.

If empty object is present in chain it will be trapped until chain leftovers appear.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#set-constantjs-

Related ABP snippet: https://github.com/adblockplus/adblockpluscore/blob/adblockpluschrome-3.9.4/lib/content/snippets.js#L1361

Syntax

example.org#%#//scriptlet('set-constant', property, value[, stack,[ valueWrapper[, setProxyTrap]]])
  • property — required, path to a property (joined with . if needed). The property must be attached to window.
  • value — required. Possible values:
    • positive decimal integer <= 32767
    • one of the predefined constants:
      • undefined
      • false
      • true
      • null
      • emptyObj — empty object
      • emptyArr — empty array
      • noopFunc — function with empty body
      • noopCallbackFunc — function returning noopFunc
      • trueFunc — function returning true
      • falseFunc — function returning false
      • throwFunc — function throwing an error
      • noopPromiseResolve — function returning Promise object that is resolved with an empty response
      • noopPromiseReject — function returning Promise.reject()
      • '' — empty string
      • -1 — number value -1
      • yes
      • no
  • stack — string or regular expression that must match the current function call stack trace, defaults to matching every call; if regular expression is invalid, it will be skipped
  • valueWrapper – optional, string to modify a value to be set. Possible wrappers:
    • asFunction – function returning value
    • asCallback – function returning callback, that would return value
    • asResolved – Promise that would resolve with value
    • asRejected – Promise that would reject with value
  • setProxyTrap – optional, boolean, if set to true, proxy trap will be set on the object

Examples

! Any access to `window.first` will return `false`
example.org#%#//scriptlet('set-constant', 'first', 'false')

✔ window.first === false
! Any call to `window.second()` will return `true`
example.org#%#//scriptlet('set-constant', 'second', 'trueFunc')

✔ window.second() === true
✔ window.second.toString() === "function trueFunc() {return true;}"
! Any call to `document.third()` will return `true` if the method is related to `checking.js`
example.org#%#//scriptlet('set-constant', 'document.third', 'trueFunc', 'checking.js')

✔ document.third() === true  // if the condition described above is met
! Any call to `document.fourth()` will return `yes`
example.org#%#//scriptlet('set-constant', 'document.fourth', 'yes', '', 'asFunction')

✔ document.fourth() === 'yes'
! Any call to `document.fifth()` will return `yes`
example.org#%#//scriptlet('set-constant', 'document.fifth', '42', '', 'asRejected')

✔ document.fifth.catch((reason) => reason === 42) // promise rejects with specified number
! Any access to `window.foo.bar` will return `false` and the proxy trap will be set on the `foo` object
! It may be required in the case when `foo` object is overwritten by website script
! Related to this issue - https://github.com/AdguardTeam/Scriptlets/issues/330
example.org#%#//scriptlet('set-constant', 'foo.bar', 'false', '', '', 'true')

✔ window.foo.bar === false

Scriptlet source


⚡️ set-cookie-reload

Added in v1.3.14.

Sets a cookie with the specified name and value, and path, and reloads the current page after the cookie setting. If reloading option is not needed, use set-cookie scriptlet.

Syntax

example.org#%#//scriptlet('set-cookie-reload', name, value[, path])
  • name — required, cookie name to be set
  • value — required, cookie value; possible values:
    • number >= 0 && <= 15
    • one of the predefined constants in any case variation:
      • true
      • false
      • yes / y
      • no / n
      • ok
      • accept/ reject
      • allow / deny
  • path — optional, cookie path, defaults to /; possible values:
    • / — root path
    • none — to set no path at all

Note that the scriptlet encodes cookie names and values, e.g value "{ test: 'value'}" becomes %7B%20test%3A%20'value'%7D.

Examples

example.org#%#//scriptlet('set-cookie-reload', 'checking', 'ok')

example.org#%#//scriptlet('set-cookie-reload', 'gdpr-settings-cookie', '1')

example.org#%#//scriptlet('set-cookie-reload', 'cookie-set', 'true', 'none')

Scriptlet source


⚡️ set-cookie

Added in v1.2.3.

Sets a cookie with the specified name, value, and path.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#set-cookiejs-

Syntax

example.org#%#//scriptlet('set-cookie', name, value[, path])
  • name — required, cookie name to be set
  • value — required, cookie value; possible values:
    • number >= 0 && <= 15
    • one of the predefined constants in any case variation:
      • true
      • false
      • yes / y
      • no / n
      • ok
      • on / off
      • accept/ accepted / notaccepted
      • reject / rejected
      • allow / allowed
      • disallow / deny
      • enable / enabled
      • disable / disabled
  • path — optional, cookie path, defaults to /; possible values:
    • / — root path
    • none — to set no path at all

Note that the scriptlet encodes cookie names and values, e.g value "{ test: 'value'}" becomes %7B%20test%3A%20'value'%7D.

Examples

example.org#%#//scriptlet('set-cookie', 'CookieConsent', '1')

example.org#%#//scriptlet('set-cookie', 'gdpr-settings-cookie', 'true')

example.org#%#//scriptlet('set-cookie', 'cookie_consent', 'ok', 'none')

Scriptlet source


⚡️ set-local-storage-item

Added in v1.4.3.

Adds specified key and its value to localStorage object, or updates the value of the key if it already exists. Scriptlet won't set item if storage is full.

To remove item from localStorage use $remove$ as a value.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#set-local-storage-itemjs-

Syntax

example.com#%#//scriptlet('set-local-storage-item', 'key', 'value')
  • key — required, key name to be set. Should be a string for setting, but it also can be a regular expression for removing items from localStorage.
  • value — required, key value; possible values:
    • positive decimal integer <= 32767
    • one of the predefined constants in any case variation:
      • undefined
      • false
      • true
      • null
      • emptyObj — empty object
      • emptyArr — empty array
      • '' — empty string
      • yes
      • no
      • on
      • off
      • $remove$ — remove specific item from localStorage

Examples

example.org#%#//scriptlet('set-local-storage-item', 'player.live.current.mute', 'false')

example.org#%#//scriptlet('set-local-storage-item', 'exit-intent-marketing', '1')

! Removes the item with key 'foo' from local storage
example.org#%#//scriptlet('set-local-storage-item', 'foo', '$remove$')

! Removes from local storage all items whose key matches the regular expression `/mp_.*_mixpanel/`
example.org#%#//scriptlet('set-local-storage-item', '/mp_.*_mixpanel/', '$remove$')

Scriptlet source


⚡️ set-popads-dummy

Added in v1.0.4.

Sets static properties PopAds and popns.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#popads-dummyjs-

Syntax

example.org#%#//scriptlet('set-popads-dummy')

Scriptlet source


⚡️ set-session-storage-item

Added in v1.4.3.

Adds specified key and its value to sessionStorage object, or updates the value of the key if it already exists. Scriptlet won't set item if storage is full.

To remove item from sessionStorage use $remove$ as a value.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#set-session-storage-itemjs-

Syntax

example.com#%#//scriptlet('set-session-storage-item', 'key', 'value')
  • key — required, key name to be set. Should be a string for setting, but it also can be a regular expression for removing items from localStorage.
  • value — required, key value; possible values:
    • positive decimal integer <= 32767
    • one of the predefined constants in any case variation:
      • undefined
      • false
      • true
      • null
      • emptyObj — empty object
      • emptyArr — empty array
      • '' — empty string
      • yes
      • no
      • on
      • off
      • $remove$ — remove specific item from sessionStorage

Examples

example.org#%#//scriptlet('set-session-storage-item', 'player.live.current.mute', 'false')

example.org#%#//scriptlet('set-session-storage-item', 'exit-intent-marketing', '1')

! Removes the item with key 'foo' from session storage
example.org#%#//scriptlet('set-session-storage-item', 'foo', '$remove$')

! Removes from session storage all items whose key matches the regular expression `/mp_.*_mixpanel/`
example.org#%#//scriptlet('set-session-storage-item', '/mp_.*_mixpanel/', '$remove$')

Scriptlet source


⚡️ xml-prune

Added in 1.7.3.

Removes an element from the specified XML.

Related UBO scriptlet: https://github.com/gorhill/uBlock/wiki/Resources-Library#xml-prunejs-

Syntax

example.org#%#//scriptlet('xml-prune'[, propsToMatch[, optionalProp[, urlToMatch]]])
  • propsToMatch — optional, XPath or selector of elements which will be removed from XML
  • optionalProp — optional, selector of elements that must occur in XML document
  • urlToMatch — optional, string or regular expression for matching the request's URL

Usage with no arguments will log response payload and URL to browser console; it may be useful for debugging but it is not allowed for prod versions of filter lists.

Examples

  1. Remove Period tag whose id contains -ad- from all requests

    example.org#%#//scriptlet('xml-prune', 'Period[id*="-ad-"]')
  2. Remove Period tag whose id contains -ad-, only if XML contains SegmentTemplate

    example.org#%#//scriptlet('xml-prune', 'Period[id*="-ad-"]', 'SegmentTemplate')
  3. Remove Period tag whose id contains -ad-, only if request's URL contains .mpd

    example.org#%#//scriptlet('xml-prune', 'Period[id*="-ad-"]', '', '.mpd')
  4. Remove Period tag whose id contains pre-roll and remove duration attribute from the Period tag by using XPath expression

    example.org#%#//scriptlet('xml-prune', 'xpath(//*[name()="Period"][contains(@id, "pre-roll") and contains(@id, "-ad-")] | //*[name()="Period"]/@duration)')
  5. Call with no arguments will log response payload and URL at the console

    example.org#%#//scriptlet('xml-prune')
  6. Call with only urlToMatch argument will log response payload and URL only for the matched URL

    example.org#%#//scriptlet('xml-prune', '', '', '.mpd')

Scriptlet source