1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-02 15:47:10 +02:00

Bring header= filter option out of experimental status

MasterKia 2023-10-20 11:42:34 +03:30
parent 920ea2f9a9
commit e9b1533c9e

@ -475,8 +475,6 @@ Generic cosmetic filters are hiding filters that apply to all pages - `##.ad-cla
#### `header`
#### _Work in progress, syntax still experimental and under evaluation_
New in [1.32.0](https://github.com/gorhill/uBlock/commit/bde3164eb445a4e74acca303ec9fa07f82ba1b1c). Advanced setting `filterOnHeaders` must be `true` (default to `false`) for this filter option to be valid in uBO.
Ability to filter network **responses** according to whether a specific **response header** is present and whether or not it matches a distinct value.
@ -524,6 +522,17 @@ Where connection:
- is of type `script`.
- has a response HTTP header named `via` whose value matches `1.1 google`.
Block requests whose responses have the `Set-Cookie` header with any value:
```adb
||example.com^$header=set-cookie
```
Unblock requests whose responses have the `Set-Cookie `header with value matching the `foo, bar$` regular expression:
```adb
@@||example.com^$header=set-cookie:/foo\, bar\$/
```
To remove response headers, see: [`Response header filtering`](#response-header-filtering).
***