Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AG-35947] Improved $header, $removeheader extension limitations #664

Merged
merged 3 commits into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 75 additions & 3 deletions docs/general/ad-filtering/create-own-filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,13 @@ The modifier part, `":" h_value`, may be omitted. In that case, the modifier mat

1. The `$header` modifier can be matched only when headers are received.
So if the request is blocked or redirected at an earlier stage, the modifier cannot be applied.

1. In AdGuard Browser Extension, the `$header` modifier is only compatible with
[`$csp`](#csp-modifier), [`$removeheader`](#removeheader-modifier), [`$important`](#important-modifier),
and [`$badfilter`](#badfilter-modifier).
[`$csp`](#csp-modifier), [`$removeheader`](#removeheader-modifier) (response headers only), [`$important`](#important-modifier),
[`$badfilter`](#badfilter-modifier), [`$domain`](#domain-modifier), [`$third-party`](#third-party-modifier),
[`$match-case`](#match-case-modifier), and [content-type modifiers](#content-type-modifiers) such as
[`$script`](#script-modifier) and [`$stylesheet`](#stylesheet-modifier). The rules with other modifiers
are considered invalid and will be discarded.

:::

Expand Down Expand Up @@ -1388,7 +1392,7 @@ These modifiers are able to completely change the behavior of basic rules.
| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ [*[5]](#redirect-modifier-limitations) | ✅ | ❌ | ❌ | ❌ |
| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ |
| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ |
| [$removeheader](#removeheader-modifier) | ✅ | ✅ [*[7]](#removeheader-modifier-limitations) | ✅ [*[7]](#removeheader-modifier-limitations) | ✅ [*[7]](#removeheader-modifier-limitations) | ❌ | ❌ | ❌ |
| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ [*[6]](#removeparam-modifier-limitations) | ✅ | ❌ | ❌ | ❌ |
| [$replace](#replace-modifier) | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ |
| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
Expand Down Expand Up @@ -2456,6 +2460,74 @@ In case of multiple `$removeheader` rules matching a single request, we will app
@@||example.org/path/$removeheader
```

##### `$removeheader` modifier limitations {#removeheader-modifier-limitations}

:::caution Limitations

[AdGuard for Chrome MV3][ext-mv3] has some limitations:

- Negation and allowlist rules are not supported.
- Group of similar `$removeheader` rules will be combined into one declarative rule. For example:

```bash
||testcases.adguard.com$xmlhttprequest,removeheader=p1case1
||testcases.adguard.com$xmlhttprequest,removeheader=P2Case1
$xmlhttprequest,removeheader=p1case2
$xmlhttprequest,removeheader=P2case2
```

is converted to

```bash
[
{
"id": 1,
"action": {
"type": "modifyHeaders",
"responseHeaders": [
{
"header": "p1case1",
"operation": "remove"
},
{
"header": "P2Case1",
"operation": "remove"
},
]
},
"condition": {
"urlFilter": "||testcases.adguard.com",
"resourceTypes": [
"xmlhttprequest"
]
}
},
{
"id": 2,
"action": {
"type": "modifyHeaders",
"responseHeaders": [
{
"header": "p1case2",
"operation": "remove"
},
{
"header": "P2case2",
"operation": "remove"
}
]
},
"condition": {
"resourceTypes": [
"xmlhttprequest"
]
}
}
]
```

:::

:::caution Restrictions

This type of rules can only be used [**in trusted filters**](#trusted-filters).
Expand Down