From e6cfa84d6ec48987a558e869e15e02b0da9d77c4 Mon Sep 17 00:00:00 2001 From: gwarser Date: Thu, 11 Jun 2020 22:09:53 +0200 Subject: [PATCH] `*`: `domain` option filters "on domain" not "from domain" --- Static-filter-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Static-filter-syntax.md b/Static-filter-syntax.md index 29d0ed7..e42f7b6 100644 --- a/Static-filter-syntax.md +++ b/Static-filter-syntax.md @@ -146,7 +146,7 @@ So in uBO, any pattern which can be wholly read as a valid hostname, will be ass The wildcard character `*` can be used to apply a filter to **all** URLs. This is not recommended though, unless you further narrow the filter using filter options. Examples: - `*$third-party`: block all 3rd-party network requests. -- `*$script,domain=example.com`: block all network requests to fetch script resources from `example.com`. +- `*$script,domain=example.com`: block all network requests to fetch script resources at `example.com`. Usually, it is far more convenient to use [dynamic filtering rules](./Dynamic-filtering) in lieu of such generic static filters.