From 3a6e4cd58f8d4468886765b81d8b3a075d2623ac Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Mon, 25 Nov 2024 18:19:08 +0900
Subject: [PATCH 01/15] [GH-issue-594] Add new section to
how-ad-blocking-works.md
Added a new section "Types of request handling in AdGuard" to how-ad-blocking-works.md, that explains those types (blocked, allowed, modified) with some examples.
---
.../ad-filtering/how-ad-blocking-works.md | 37 +++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index 37e12b0d52c..663a4f59aff 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+A detailed information about how each request was handled by your AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](filter-policy.md), which describes in detail what and why each of our filters blocks.
+
+### Blocked requests examples
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Allowed requests examples
+
+AdGuard Base filter allows non-ad requests such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows search ads requests, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Modified requests examples
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` →
+`https://www.gog.com/game/spec_ops_the_line`
+
+> Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
+> - something on the page is changed (usually by cosmetic rules)
+> - the response is modified
From 8938734eb1563c8c5daecaab91c09e3bbbd2462b Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Mon, 25 Nov 2024 18:21:57 +0900
Subject: [PATCH 02/15] fix lint error space
---
docs/general/ad-filtering/how-ad-blocking-works.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index 663a4f59aff..92ea392d94b 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -69,7 +69,7 @@ AdGuard handles requests according to filters, user rules and settings enabled b
A detailed information about how each request was handled by your AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
-Regarding AdGuard filters, you can also check [our filter policy](filter-policy.md), which describes in detail what and why each of our filters blocks.
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
### Blocked requests examples
@@ -99,3 +99,4 @@ Tracking protection feature with protection level set to *High* enables AdGuard
> Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
> - something on the page is changed (usually by cosmetic rules)
> - the response is modified
+>
From f2e0bb308bb8ba8443368cb85f47f1ff2b150073 Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Mon, 25 Nov 2024 18:24:48 +0900
Subject: [PATCH 03/15] fix lint space around list
---
docs/general/ad-filtering/how-ad-blocking-works.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index 92ea392d94b..b849a5da1d6 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -96,7 +96,8 @@ Tracking protection feature with protection level set to *High* enables AdGuard
`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` →
`https://www.gog.com/game/spec_ops_the_line`
-> Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
+> Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
+>
> - something on the page is changed (usually by cosmetic rules)
> - the response is modified
>
From 4a872bc2e20dcb5e079461dedfbfdc65fa92ee23 Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Mon, 25 Nov 2024 18:29:08 +0900
Subject: [PATCH 04/15] fix lint trailing space
---
docs/general/ad-filtering/how-ad-blocking-works.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index b849a5da1d6..f47fb692c18 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -97,7 +97,6 @@ Tracking protection feature with protection level set to *High* enables AdGuard
`https://www.gog.com/game/spec_ops_the_line`
> Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
->
+>
> - something on the page is changed (usually by cosmetic rules)
> - the response is modified
->
From ce18a39c7eafaa79509547e420f58c02a04a3b8b Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Mon, 25 Nov 2024 18:38:39 +0900
Subject: [PATCH 05/15] fix lint error trailing space
---
docs/general/ad-filtering/how-ad-blocking-works.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index f47fb692c18..3783dc576dd 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -96,7 +96,7 @@ Tracking protection feature with protection level set to *High* enables AdGuard
`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` →
`https://www.gog.com/game/spec_ops_the_line`
-> Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
->
-> - something on the page is changed (usually by cosmetic rules)
-> - the response is modified
+Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
+
+ - something on the page is changed (usually by cosmetic rules)
+ - the response is modified
From e751701f095c443803e0feb937b86bfc174d6166 Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Mon, 25 Nov 2024 18:43:43 +0900
Subject: [PATCH 06/15] fix trailing space and list
---
docs/general/ad-filtering/how-ad-blocking-works.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index 3783dc576dd..e2365f8aab2 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -93,10 +93,10 @@ Tracking protection feature with protection level set to *High* enables AdGuard
`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
-`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` →
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` →
`https://www.gog.com/game/spec_ops_the_line`
Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
- - something on the page is changed (usually by cosmetic rules)
- - the response is modified
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
From 75f4e79b07aff902514724b5f7cf0e954d8761e0 Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Tue, 26 Nov 2024 17:58:17 +0900
Subject: [PATCH 07/15] Apply suggestions from code review
Co-authored-by: Helen <58733007+el-termikael@users.noreply.github.com>
---
docs/general/ad-filtering/how-ad-blocking-works.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index e2365f8aab2..582510edc3f 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -67,17 +67,17 @@ There are other types of filtering rules, but they require more advanced technic
AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
-A detailed information about how each request was handled by your AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
-### Blocked requests examples
+### Examples of blocked requests
AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
-### Allowed requests examples
+### Examples of allowed requests
AdGuard Base filter allows non-ad requests such as `www.google.com/complete/search?q=`.
@@ -85,7 +85,7 @@ Filter unblocking search ads and self-promotion allows search ads requests, such
Requests to websites that are added by the user to *Allowlist* are allowed.
-### Modified requests examples
+### Examples of modified requests
Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
@@ -96,7 +96,7 @@ Tracking protection feature with protection level set to *High* enables AdGuard
`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` →
`https://www.gog.com/game/spec_ops_the_line`
-Please note that *Modified* events you see in the Filtering log or Recent activity do not refer only to the cases when a request is modified, but also when:
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
- something on the page is changed (usually by cosmetic rules)
- the response is modified
From 335719c3bfcfba8082ba2881341d099e117efd3a Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Tue, 26 Nov 2024 18:09:04 +0900
Subject: [PATCH 08/15] Make the example of allowed request more clear
---
docs/general/ad-filtering/how-ad-blocking-works.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index 582510edc3f..4b71a170e7a 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -81,7 +81,7 @@ AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.co
AdGuard Base filter allows non-ad requests such as `www.google.com/complete/search?q=`.
-Filter unblocking search ads and self-promotion allows search ads requests, such as `www.google.com/aclk?`.
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
Requests to websites that are added by the user to *Allowlist* are allowed.
From 59608ed0dd2ec4fe06791d641b2efedfed6822b0 Mon Sep 17 00:00:00 2001
From: vyanovsky <51786050+vyanovsky@users.noreply.github.com>
Date: Tue, 26 Nov 2024 19:30:44 +0900
Subject: [PATCH 09/15] Add missing commas before "such as"
---
docs/general/ad-filtering/how-ad-blocking-works.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/general/ad-filtering/how-ad-blocking-works.md b/docs/general/ad-filtering/how-ad-blocking-works.md
index 4b71a170e7a..09ec0cff7f5 100644
--- a/docs/general/ad-filtering/how-ad-blocking-works.md
+++ b/docs/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -79,7 +79,7 @@ AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.co
### Examples of allowed requests
-AdGuard Base filter allows non-ad requests such as `www.google.com/complete/search?q=`.
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
From 2d3cb328f7fffa78645a542c67705186fcd2f5da Mon Sep 17 00:00:00 2001
From: el-termikael <58733007+el-termikael@users.noreply.github.com>
Date: Wed, 27 Nov 2024 09:14:35 +0000
Subject: [PATCH 10/15] automatically update translations
---
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 18 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/create-own-filters.md | 239 +++++++++---------
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 98 ++++---
.../current/general/stealth-mode.md | 104 ++++----
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../current.json | 2 +-
.../adguard-browser-extension.md | 36 +--
.../adguard-browser-extension/availability.md | 2 +-
.../comparison-standalone.md | 6 +-
.../features/features.md | 22 +-
.../features/main-menu.md | 2 +-
.../features/stealth-mode.md | 2 +-
.../adguard-browser-extension/mv3-version.md | 2 +-
.../solving-problems/debug-rules.md | 2 +-
.../solving-problems/solving-problems.md | 6 +-
.../adguard-content-blocker.md | 4 +-
.../adguard-for-android.md | 14 +-
.../adguard-for-android/features/assistant.md | 8 +-
.../adguard-for-android/features/features.md | 34 +--
.../features/free-vs-full.mdx | 6 +-
.../features/protection/firewall/firewall.md | 2 +-
.../features/protection/protection.md | 26 +-
.../adguard-for-android/features/settings.md | 2 +-
.../features/statistics.md | 2 +-
.../solving-problems/background-work.md | 6 +-
.../solving-problems/battery.md | 2 +-
.../solving-problems/firefox-certificates.md | 2 +-
.../solving-problems/log.md | 2 +-
.../solving-problems/logcat.md | 4 +-
.../solving-problems/low-level-settings.md | 2 +-
.../multiple-user-profiles.md | 2 +-
.../solving-problems/secure-folder.md | 2 +-
.../solving-problems/solving-problems.md | 38 +--
.../adguard-for-ios/adguard-for-ios.md | 22 +-
.../features/advanced-protection.md | 2 +-
.../adguard-for-ios/features/features.md | 38 +--
.../solving-problems/solving-problems.md | 14 +-
.../current/adguard-for-ios/web-extension.md | 6 +-
.../adguard-for-mac/adguard-for-mac.md | 14 +-
.../features/browser-assistant.md | 2 +-
.../current/adguard-for-mac/features/dns.md | 10 +-
.../adguard-for-mac/features/extensions.md | 18 +-
.../adguard-for-mac/features/features.md | 42 +--
.../adguard-for-mac/features/filters.md | 22 +-
.../adguard-for-mac/features/general.md | 28 +-
.../current/adguard-for-mac/features/main.md | 6 +-
.../adguard-for-mac/features/network.md | 2 +-
.../adguard-for-mac/features/stealth.md | 2 +-
.../solving-problems/advanced-settings.md | 6 +-
.../solving-problems/big-sur-issues.md | 10 +-
.../high-sierra-compatibility.md | 8 +-
.../solving-problems/icloud-private-relay.md | 2 +-
.../solving-problems/screen-time-issues.md | 10 +-
.../solving-problems/solving-problems.md | 24 +-
.../adguard-for-safari/adguard-for-safari.md | 18 +-
.../current/adguard-for-safari/extensions.md | 4 +-
.../adguard-for-safari/features/features.md | 24 +-
.../adguard-for-safari/features/general.md | 2 +-
.../adguard-for-safari/installation.md | 6 +-
.../solving-problems/solving-problems.md | 12 +-
.../adguard-for-windows.md | 22 +-
.../adguard-for-windows/browser-assistant.md | 4 +-
.../features/extensions.md | 6 +-
.../adguard-for-windows/features/features.md | 22 +-
.../features/home-screen.md | 2 +-
.../adguard-for-windows/features/network.md | 24 +-
.../adguard-for-windows/features/settings.md | 18 +-
.../adguard-for-windows/installation.md | 40 +--
.../solving-problems/adguard-logs.md | 2 +-
.../solving-problems/solving-problems.md | 22 +-
.../current/general/account/features.md | 4 +-
.../ad-filtering/create-own-filters.md | 61 ++---
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../general/ad-filtering/search-ads.md | 2 +-
.../tracking-filter-statistics.md | 4 +-
.../current/general/browsing-security.md | 34 +--
.../current/general/extensions.md | 88 +++----
.../general/https-filtering/known-issues.md | 42 +--
.../current/general/stealth-mode.md | 10 +-
.../guides/block-push-notifications.md | 66 ++---
.../current/guides/collect-har-file.md | 2 +-
.../current/guides/minidump.md | 2 +-
.../current/guides/proxy-certificate.md | 8 +-
.../current/guides/report-bugs.md | 4 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
.../adguard-browser-extension.md | 14 +-
.../adguard-browser-extension/availability.md | 2 +-
.../high-sierra-compatibility.md | 8 +-
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 39 ++-
.../current/general/browsing-security.md | 2 +-
.../current/general/extensions.md | 20 +-
.../current/intro.md | 2 +-
313 files changed, 2556 insertions(+), 1566 deletions(-)
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/be/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/be/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/intro.md b/i18n/be/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/bn/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/bn/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/intro.md b/i18n/bn/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 30dbfb0bfd8..1310da1ebc5 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Tento článek je o Rozšíření prohlížeče AdGuard, které chrání pouze v
Zde jsou popsány hlavní funkce a nastavení dostupné v rozšíření prohlížeče AdGuard.
-[Funkce](/adguard-browser-extension/features/features.md)
+[Funkce](/adguard-browser-extension/features)
## Dostupnost
V tomto článku se dozvíte o podporovaných prohlížečích a platformách, na které lze rozšíření nainstalovat.
-[Dostupnost](/adguard-browser-extension/availability.md)
+[Dostupnost](/adguard-browser-extension/availability)
## Instalace
V článku je vysvětleno, jak nainstalovat Rozšíření prohlížeče AdGuard do různých podporovaných prohlížečů.
-[Instalace](/adguard-browser-extension/installation.md)
+[Instalace](/adguard-browser-extension/installation)
## Kompatibilita se samostatnou aplikací
Článek vysvětluje kompatibilitu Rozšíření prohlížeče AdGuard s aplikacemi AdGuard pro počítače.
-[Kompatibilita se samostatnou aplikací](adguard-browser-extension/compatibility.md)
+[Kompatibilita se samostatnou aplikací](/adguard-browser-extension/compatibility)
## Rozšíření prohlížeče AdGuard pro Chrome MV3
@@ -43,16 +43,16 @@ Tento článek pojednává o rozšíření prohlížeče AdGuard pro Chrome, kte
Článek popisuje, jak Rozšíření prohlížeče AdGuard spravuje chráněné stránky a omezuje blokování reklam na určitých citlivých webových stránkách, aby byla zajištěna správná funkčnost.
-[Stránky chráněné prohlížečem](/adguard-browser-extension/protected-pages.md)
+[Stránky chráněné prohlížečem](/adguard-browser-extension/protected-pages)
## Řešení problémů
Tato část obsahuje průvodce známými problémy a jejich možnými řešeními.
-[Řešení problémů](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Řešení problémů](/adguard-browser-extension/solving-problems)
## Srovnání se samostatnými aplikacemi
Článek upozorňuje na rozdíly ve funkčnosti, pokrytí a vlastnostech mezi rozšířeními AdGuard a aplikacemi pro počítače.
-[Porovnání se samostatnými aplikacemi](/adguard-browser-extension/comparison-standalone.md)
+[Porovnání se samostatnými aplikacemi](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 137c7c482a1..cea56ed70ec 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Máme samostatné rozšíření pro Safari. Od vydání [Safari 13](https://adgu
:::
-**Nezapomeňte, že funkčnost každého rozšíření je přísně omezena možnostmi prohlížeče.** Pokud tedy chcete získat plnohodnotnou ochranu, zvažte instalaci samostatného programu pro svůj počítač. Existuje [důvod, proč](adguard-browser-extension/comparison-standalone).
+**Nezapomeňte, že funkčnost každého rozšíření je přísně omezena možnostmi prohlížeče.** Pokud tedy chcete získat plnohodnotnou ochranu, zvažte instalaci samostatného programu pro svůj počítač. Existuje [důvod, proč](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index 76cd47affc0..7f54252cd0e 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Tento článek popisuje AdGuard pro macOS, multifunkční blokátor reklam, kter
:::
-Během instalace AdGuardu v systému macOS High Sierra (nebo novějších) se může zobrazit zpráva: "Systémové rozšíření zablokováno". Jedná se o nový bezpečnostní mechanismus, který se objevil v softwaru High Sierra a vyžaduje výslovné povolení instalace systémového rozšíření třetí strany. Chcete-li dokončit instalaci AdGuardu, musíte ručně povolit načtení rozšíření v *Předvolbách systému* → *Soukromí a zabezpečení* → *Obecné*.
+Během instalace AdGuardu v systému macOS High Sierra (nebo novějších) se může zobrazit zpráva: "Systémové rozšíření zablokováno". Jedná se o nový bezpečnostní mechanismus, který se představil v softwaru High Sierra a vyžaduje výslovné povolení instalace systémového rozšíření třetí strany.
+
+Chcete-li dokončit instalaci AdGuardu, musíte ručně povolit načtení rozšíření kliknutím na tlačítko "Povolit" v *Předvolbách systému* → *Soukromí a zabezpečení* → *Obecné*.
+
+V macOS Sequoia to můžete provést v části *Předvolby systému* → *Zabezpečení a soukromí* → *Obecné* → *Přihlašovací položky a rozšíření*. Jakmile tam budete, klikněte na ikonu "i" vedle položky *Síťová rozšíření* a přepněte možnost AdGuard.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Klikněte na tlačítko "Povolit" a poté budete moci normálně pokračovat v instalaci.
+Poté budete moci pokračovat v instalaci jako obvykle.
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index a9aaa94b14e..6bcd2857716 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Uživatelská pravidla a pravidla seznamu povolených jsou součástí každého
## AdGuard pro Safari
-*AdGuard pro Safari aktivuje ikonu AdGuardu vedle vyhledávací lišty. Je to užitečné, pokud chcete rychle nastavit ochranu na konkrétním webu nebo ručně blokovat reklamy. Obsahuje také pokročilá pravidla, která nejsou převedena do formátu podporovaného prohlížečem Safari. To zahrnuje [pravidla CSS](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [rozšířené selektory CSS](/general/ad-filtering/create-own-filters#extended-css-selectors) a [skriptlety](/general/ad-filtering/create-own-filters#scriptlets), které umožňují AdGuardu blokovat složité reklamy, například na YouTube.
+*AdGuard pro Safari* aktivuje ikonu AdGuardu vedle vyhledávací lišty. Je to užitečné, pokud chcete rychle nastavit ochranu na konkrétním webu nebo ručně blokovat reklamy. Obsahuje také pokročilá pravidla, která nejsou převedena do formátu podporovaného prohlížečem Safari. To zahrnuje [pravidla CSS](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [rozšířené selektory CSS](/general/ad-filtering/create-own-filters#extended-css-selectors) a [skriptlety](/general/ad-filtering/create-own-filters#scriptlets), které umožňují AdGuardu blokovat složité reklamy, například na YouTube.
## Jak spravovat rozšíření Safari
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index e6b4200f88b..d73aa0e63b6 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ A i když je pravidlo nakonec přidáno do filtru, neznamená to, že tam zůsta
Uživatelé AdGuardu [mají přístup ke speciálnímu webovému nástroji pro vytváření hlášení](https://reports.adguard.com/new_issue.html). Díky stížnostem uživatelů se mohou tvůrci filtrů soustředit na opravu svých seznamů filtrů a ne na hledání nových a starých neblokovaných reklam na internetu.
-Filtry umí více než jen blokovat reklamy. Existují filtry, které blokují sledování, widgety sociálních médií a obtěžující prvky, jako jsou upozornění na soubory cookies. Různí uživatelé si mohou zvolit různé kombinace filtrů podle svých osobních preferencí. Existují webové stránky jako [filterlists.com](https://filterlists.com/), které se věnují seznamům filtrů a mají obrovské databáze.
+Filtry umí více než jen blokovat reklamy. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Různí uživatelé si mohou zvolit různé kombinace filtrů podle svých osobních preferencí. Existují webové stránky jako [filterlists.com](https://filterlists.com/), které se věnují seznamům filtrů a mají obrovské databáze.
Vyvíjíme a spravujeme [vlastní sadu seznamů filtrů](../adguard-filters), které lze použít s AdGuardem nebo jinými blokátory reklam.
@@ -62,3 +62,40 @@ Tato pravidla jsou poměrně složitá a vyžadují, aby blokátor reklam získa
Existují i další typy pravidel filtrování, ale jejich fungování vyžaduje pokročilejší technické znalosti. Pokud máte zájem, podívejte se na [našeho komplexního průvodce pravidly filtrování v odkazovaném článku](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/cs/docusaurus-plugin-content-docs/current/general/browsing-security.md
index de466847735..c9f7ca6db25 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Při každé návštěvě webové stránky si místní klient vyměňuje informa
AdGuard poskytuje nejlepší možnou ochranu tím, že kontroluje jak stránky, tak všechny objekty na nich načtené. AdGuard kontroluje adresy URL a názvy domén pomocí hash prefixů, nikoli celých adres URL, takže naše servery nezachovávají žádné informace o navštívených webových stránkách a vaše osobní údaje jsou zcela v bezpečí. Naše servery odpoví na dotaz aplikace seznamem všech možných adres, které odpovídají prefixu hash. Pokud je na základě shody hash detekována potenciální hrozba, přístup na danou webovou stránku je okamžitě zablokován.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### V rozšířeních prohlížeče
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/cs/docusaurus-plugin-content-docs/current/general/extensions.md
index 8e07bef23ca..0555116ec11 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Tento skript odstraní z odkazů ve výsledcích vyhledávání Google funkci sl
Jeho zdrojový kód je [k dispozici na GitHubu](https://github.com/Rob--W/dont-track-me-google). Tento uživatelský skript lze stáhnout ze stránek [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) a nainstalovat do libovolné aplikace založené na AdGuard CoreLibs.
-#### microShield
+#### tinyShield
-Uživatelský skript pro lidi, kteří navštěvují korejské a některé mezinárodní webové stránky. Uživatelský skript microShield blokuje Ad-Shield a anti-adblock. Jeho původní zdrojový kód je k dispozici na [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) a [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). Tento uživatelský skript lze nainstalovat v AdGuard CoreLibs, Violentmonkey, Tampermonkey a [quoid/userscripts](https://github.com/quoid/userscripts). Více informací o skriptu microShield a jeho instalaci najdete na [GitHubu](https://github.com/List-KR/microShield).
+Uživatelský skript pro lidi, kteří navštěvují korejské a některé mezinárodní webové stránky. Uživatelský skript tinyShield blokuje Ad-Shield a anti-adblock. Tento uživatelský skript lze nainstalovat v AdGuard CoreLibs, Violentmonkey, Tampermonkey a [quoid/userscripts](https://github.com/quoid/userscripts). Více informací o skriptu microShield a jeho instalaci najdete na [GitHubu](https://github.com/List-KR/tinyShield).
### Kde můžete získat další uživatelské skripty?{#more-userscripts}
@@ -89,15 +89,7 @@ Pokud se vám líbí myšlenka přizpůsobení prohlížeče pomocí uživatelsk
#### Žádost o licenci
-Pokud vyvíjíte vlastní skript a chcete si vyzkoušet, jak s AdGuardem funguje, požádejte o licenční klíč pro beta verzi aplikace.
-
-Chcete-li ji získat, zašlete e-mail na adresu devteam@adguard.com a uveďte následující informace:
-
-**Předmět:** Žádost o autorskou licenci uživatelského skriptu
-
-**Popis:** Řekněte nám prosím o uživatelských skriptech, na kterých pracujete.
-
-Zde je [odkaz na mail](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+Pokud vyvíjíte vlastní uživatelský skript a chcete si vyzkoušet, jak funguje s AdGuardem, můžete požádat o licenci vyplněním [formuláře](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Kompatibilita
@@ -213,7 +205,7 @@ GM_log
## Uživatelské styly
-Uživatelské styly umožňují uživatelům přizpůsobit si prostředí online. Ať už chcete změnit vzhled webových stránek nebo automatizovat opakující se úlohy, styly nabízejí řadu možností.
+Uživatelské styly umožňují uživatelům změnit vzhled oblíbených webových stránek.
AdGuard má možnost nahrát nebo vytvořit vlastní uživatelské styly. Jedná se o pokročilou funkci, takže budete potřebovat určité znalosti HTML a CSS.
@@ -231,7 +223,7 @@ Uživatelské styly si můžete stáhnout z různých webových stránek. Jednou
1. Přejděte na výše uvedený odkaz a vyberte si uživatelský styl, který se vám líbí
-2. Klikněte pravým tlačítkem myši na _Instalovat_ a zvolte _Kopírovat adresu odkazu_
+2. Klikněte na _Kopírovat_ vedle adresy uživatelského stylu
3. Otevřete nastavení AdGuardu → _Rozšíření_
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/intro.md b/i18n/cs/docusaurus-plugin-content-docs/current/intro.md
index 46af0c5d441..e34c57c69cb 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard je jedním z lídrů na trhu softwaru pro blokování reklam s více ne
Vyvíjíme a spravujeme také bezplatná rozšíření prohlížeče pro všechny oblíbené prohlížeče:
-- [Rozšíření prohlížeče AdGuard](/adguard-browser-extension/features/filters)
+- [Rozšíření prohlížeče AdGuard](/adguard-browser-extension/availability)
- [AdGuard pro Safari](/adguard-for-safari/features/general)
## Nejen blokování reklam
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/da/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/da/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/intro.md b/i18n/da/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index ab9998c352a..a95469bc7f6 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ In diesem Artikel geht es um die AdGuard Browsereweiterung, die nur Ihren Browse
Im Folgenden werden die wichtigsten Funktionen und Einstellungen der AdGuard Browsererweiterung beschrieben.
-[Funktionen](/adguard-browser-extension/features/features.md)
+[Funktionen](/adguard-browser-extension/features)
## Verfügbarkeit
In diesem Artikel erfahren Sie mehr über die unterstützten Browser und Plattformen, auf denen die Erweiterung installiert werden kann.
-[Verfügbarkeit](/adguard-browser-extension/availability.md)
+[Verfügbarkeit](/adguard-browser-extension/availability)
## Installation
Der Artikel erklärt, wie Sie die AdGuard Browsererweiterung auf verschiedenen unterstützten Browsern installieren.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Kompatibilität mit der eigenständigen App
Der Artikel erklärt die Kompatibilität der AdGuard Browsererweiterung mit den AdGuard Desktop-Anwendungen.
-[Kompatibilität mit der eigenständigen App](adguard-browser-extension/compatibility.md)
+[Kompatibilität mit der eigenständigen App](adguard-browser-extension/compatibility)
## AdGuard Browsererweiterung für Chrome MV3
@@ -43,16 +43,16 @@ In diesem Artikel wird die AdGuard-Browsererweiterung für Chrome besprochen, di
Der Artikel beschreibt, wie die AdGuard-Browsererweiterung geschützte Seiten verwaltet und das Sperren von Werbung auf bestimmten sensiblen Websites einschränkt, um die ordnungsgemäße Funktionalität sicherzustellen.
-[Browser-geschützte Seiten](/adguard-browser-extension/protected-pages.md)
+[Browser-geschützte Seiten](/adguard-browser-extension/protected-pages)
## Probleme lösen
Dieser Abschnitt enthält Anleitungen zu bekannten Problemen und möglichen Lösungen.
-[Probleme lösen](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Probleme lösen](/adguard-browser-extension/solving-problems)
## Vergleich mit eigenständigen Anwendungen
Der Artikel hebt die Unterschiede zwischen den AdGuard-Erweiterungen und den Desktop-Anwendungen in Bezug auf Funktionalität, Abdeckung und Merkmale hervor.
-[Kompatibilität mit der eigenständigen App](/adguard-browser-extension/comparison-standalone.md)
+[Kompatibilität mit der eigenständigen App](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index 1135a4573d7..d2587ea29e6 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Dieser Artikel behandelt AdGuard für Mac, einem multifunktionalen Werbeblocker,
:::
-Bei der Installation von AdGuard unter macOS High Sierra (oder höher) kann es zu folgender Meldung kommen: „Systemerweiterung gesperrt“. Dies ist ein neuer Sicherheitsmechanismus, der in High Sierra aufgetaucht ist und erfordert, dass Sie die Installation einer Systemerweiterung eines Drittanbieters explizit zulassen. Um die Installation von AdGuard abzuschließen, müssen Sie das Laden der Erweiterung in *System Preferences* → *Security & Privacy* → *General* manuell zulassen.
+Während der Installation von AdGuard unter macOS High Sierra (oder höher) erhalten Sie möglicherweise die Meldung „Systemerweiterung gesperrt“. Dies ist ein neuer Sicherheitsmechanismus, der in High Sierra eingeführt wurde und erfordert, dass Sie die Installation einer Systemerweiterung eines Drittanbieters explizit erlauben.
+
+Um die Installation von AdGuard abzuschließen, müssen Sie das Laden der Erweiterung manuell zulassen, indem Sie in *Systemeinstellungen* → *Sicherheit & Privatsphäre* → *Allgemein* auf die Schaltfläche „Zulassen“ klicken.
+
+Auf macOS Sequoia können Sie dies in *Einstellungen* → *Sicherheit & Datenschutz* → *Allgemeiner Modus* → *Anmeldeobjekte & Erweiterungen* tun. Klicken Sie dort auf das "i"-Symbol neben den *Netzwerkerweiterungen* und schalten Sie die Option AdGuard ein.
![Erweiterungsinstallation in den Einstellungen zulassen](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Klicken Sie auf die Schaltfläche „Allow“, und danach können Sie mit der Installation wie gewohnt fortfahren.
+Danach können Sie wie gewohnt mit der Installation fortfahren.
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index d4829b4d6a7..c3bdcf4e94b 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Benutzerregeln und Regeln für die Freigabeliste sind in jeder Erweiterung entha
## AdGuard für Safari
-*AdGuard für Safari aktiviert das AdGuard-Symbol neben der Suchleiste. Dies ist nützlich, wenn Sie schnell einen Schutz für eine bestimmte Website einrichten oder Werbung manuell sperren möchten. Sie enthält zudem erweiterte Regeln, die nicht in das von Safari unterstützte Format konvertiert werden. Dazu gehören [CSS-Regeln](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [erweiterte CSS-Selektoren](/general/ad-filtering/create-own-filters#extended-css-selectors) und [Scriptlets](/general/ad-filtering/create-own-filters#scriptlets), die es AdGuard ermöglichen, komplexe Werbung, z. B. auf YouTube, zu sperren.
+*AdGuard für Safari* aktiviert das AdGuard-Symbol neben der Suchleiste. Dies ist nützlich, wenn Sie schnell einen Schutz für eine bestimmte Website einrichten oder Werbung manuell sperren möchten. Sie enthält zudem erweiterte Regeln, die nicht in das von Safari unterstützte Format konvertiert werden. Dazu gehören [CSS-Regeln](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [erweiterte CSS-Selektoren](/general/ad-filtering/create-own-filters#extended-css-selectors) und [Scriptlets](/general/ad-filtering/create-own-filters#scriptlets), die es AdGuard ermöglichen, komplexe Werbung, z. B. auf YouTube, zu sperren.
## So verwalten Sie Safari-Erweiterungen
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 0c74a36170a..8223b7d7f73 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -11,7 +11,7 @@ In diesem Artikel wird erklärt, wie Sie benutzerdefinierte Filterregeln für di
:::
-Ein Filter ist eine Reihe von Filterregeln, die auf bestimmte Inhalte wie Banner oder Pop-ups angewendet werden. AdGuard verfügt über eine von unserem Team erstellte Liste von Standardfiltern. We constantly improve and update them, striving to meet the needs of most of our users.
+Ein Filter ist eine Reihe von Filterregeln, die auf bestimmte Inhalte wie Banner oder Pop-ups angewendet werden. AdGuard verfügt über eine von unserem Team erstellte Liste von Standardfiltern. Wir verbessern und aktualisieren sie ständig und bemühen uns, den Bedürfnissen der meisten unserer Nutzer gerecht zu werden.
Gleichzeitig können Sie mit AdGuard Ihre eigenen benutzerdefinierten Filter erstellen, indem Sie dieselben Regeltypen verwenden, die wir in unseren Filtern haben.
@@ -65,11 +65,11 @@ Standardmäßig funktionieren solche Regeln nicht für Dokumentanfragen. This me
- `https://example.org/banner/img`
-### Grundlegende Regelmodifikatoren {#basic-rule-modifiers}
+### Modifikatoren für Grundregeln {#basic-rule-modifiers}
Filterregeln unterstützen zahlreiche Modifikatoren, mit denen Sie das Verhalten der Regel feinabstimmen können. Hier ist ein Beispiel für eine Regel mit einigen einfachen Modifikatoren.
-![Grundlegende Regelmodifikatoren](https://cdn.adtidy.org/content/kb/ad_blocker/general/2_basic_rule_options.svg)
+![Modifikatoren für Grundregeln](https://cdn.adtidy.org/content/kb/ad_blocker/general/2_basic_rule_options.svg)
**Diese Regel sperrt:**
@@ -78,7 +78,7 @@ Filterregeln unterstützen zahlreiche Modifikatoren, mit denen Sie das Verhalten
**Diese Regel sperrt nicht:**
- `https://example.org/script.js` if this script is loaded from `example.org`.
-- `https://example.org/banner.png` because it is not a script.
+- `https://example.org/banner.png` weil es sich nicht um ein Skript handelt.
### Entsperren einer Adresse
@@ -86,9 +86,9 @@ Filterregeln unterstützen zahlreiche Modifikatoren, mit denen Sie das Verhalten
**Diese Regel sperrt nicht:**
-- `http://example.org/banner.png` even if there is a blocking rule for this address.
+- `http://example.org/banner.png`, auch wenn es eine Sperrregel für diese Adresse gibt.
-Blocking rules with [`$important`](#important-modifier) modifier can override exceptions.
+Sperrregeln mit dem Modifikator [`$important`](#important-modifier) können Ausnahmen außer Kraft setzen.
### Entsperren einer gesamten Website
@@ -109,17 +109,17 @@ AdGuard [erweitert CSS](#extended-css-selectors) und ermöglicht es den Entwickl
**Beliebte CSS-Selektoren**
-| Name | CSS-Selektor | Beschreibung |
-| ---------------------------- | -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| ID-Selektor | `#banners` | Matches all elements with `id` attribute equal to `banners`.
![ID-Selektor](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_id_selector.png) |
-| Klassenselektor | `.banners` | Matches all elements with `class` attribute containing `banners`.
![Klassenselektor](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_selector.png) |
-| Attribute selector | `div[class="banners"]` | Matches all `div` elements with `class` attribute **exactly equal** to `banners`.
![Attribute selector](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_attr.png) |
-| Attribute substring selector | `div[class^="advert1"]` | Matches all `div` elements which `class` attribute **starts with** the `advert1` string.
![Attribute substring selector](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_attr_start.png) |
-| Attribute substring selector | `div[class$="banners_ads"]` | Matches all `div` elements which `class` attribute **ends with** the `banners_ads` string.
![Attribute substring selector](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_attr_end.png) |
-| Attribute substring selector | `a[href^="http://example.com/"]` | Matches all links that are loaded from `http://example.com/` domain.
![Attribute substring selector](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_attr_start.png) |
-| Attribute selector | `a[href="http://example.com/"]` | Matches all links to **exactly** the `http://example.com/` address.
![Attribute selector](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_attr_equal.png) |
+| Name | CSS-Selektor | Beschreibung |
+| --------------------------------- | -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| ID-Selektor | `#banners` | Matches all elements with `id` attribute equal to `banners`.
![ID-Selektor](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_id_selector.png) |
+| Klassenselektor | `.banners` | Matches all elements with `class` attribute containing `banners`.
![Klassenselektor](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_selector.png) |
+| Attribut-Selektor | `div[class="banners"]` | Matches all `div` elements with `class` attribute **exactly equal** to `banners`.
![Attribut-Selektor](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_attr.png) |
+| Attribute substring selector | `div[class^="advert1"]` | Matches all `div` elements which `class` attribute **starts with** the `advert1` string.
![Attribute substring selector](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_attr_start.png) |
+| Selektor für Attribut-Teilstrings | `div[class$="banners_ads"]` | Entspricht allen `div`-Elementen, deren `class`-Attribut mit `banners_ads` **endet**.
![Selektor für Attribut-Teilstrings](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_class_attr_end.png) |
+| Selektor für Attribut-Teilstrings | `a[href^="http://example.com/"]` | Entspricht allen Links, die von der Domain `http://example.com/` geladen werden.
![Selektor für Attribut-Teilstrings](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_attr_start.png) |
+| Attribut-Selektor | `a[href="http://example.com/"]` | Matches all links to **exactly** the `http://example.com/` address.
![Attribut-Selektor](https://cdn.adtidy.org/public/Adguard/kb/en/rules_syntax/css_attr_equal.png) |
-## Restrictions and limitations
+## Einschränkungen und Begrenzungen
### Vertrauenswürdige Filter {#trusted-filters}
@@ -133,19 +133,19 @@ Einige Regeln können nur in vertrauenswürdigen Filtern verwendet werden. Diese
AdGuard Inhaltsblocker ist eine Erweiterung für Samsung- und Yandex-Browser, die über Google Play installiert werden kann. Es ist nicht zu verwechseln mit dem voll funktionsfähigen AdGuard für Android, der nur von [unserer Website](https://adguard.com/adguard-android/overview.html) heruntergeladen werden kann. Leider sind die Möglichkeiten von AdGuard Inhaltsblocker durch die von den Browsern erlaubten Funktionen begrenzt, und sie unterstützen nur eine ältere Adblock Plus-Filtersyntax:
-- Allgemeine Sperrregeln mit den folgenden Modifikatoren: `$domain`, `$third-party`, [content-type modifiers](#content-type-modifiers).
+- Grundregeln zur Sperrung mit den folgenden Modifikatoren: `$domain`, `$third-party`, [content-type-Modifikatoren](#content-type-modifiers).
- Basic exception rules with the following modifiers: `$document`, `$elemhide`.
- Basic [element hiding rules](#cosmetic-elemhide-rules) with no extended CSS support.
Aufgrund der oben genannten Einschränkungen wird AdGuard Inhaltsblocker nicht in den Kompatibilitätshinweisen erwähnt.
-## Basic rules
+## Grundregeln
-The most simple rules are so-called *Basic rules*. They are used to block requests to specific URLs. Or to unblock it, if there is a special marker "@@" at the beginning of the rule. The basic principle for this type of rules is quite simple: you have to specify the address and additional parameters that limit or expand the rule scope.
+Die einfachsten Regeln sind die sogenannten *Grundregeln*. Sie werden verwendet, um Anfragen an bestimmte URLs zu sperren. Oder um sie zu entsperren, wenn am Anfang der Regel eine spezielle Kennzeichnung „@@“ vorhanden ist. Das Grundprinzip für diese Art von Regeln ist recht einfach: Sie müssen die Adresse und zusätzliche Parameter angeben, die den Regelbereich einschränken oder erweitern.
:::note Sub-Anfragen
-Basic rules for blocking requests are applied only to **sub-requests**. Das bedeutet, dass sie das Laden der Seite nicht verhindern, es sei denn, es wird explizit mit einem `$document`-Modifikator angegeben.
+Die Grundregeln für das Sperren von Anfragen werden nur auf **Sub-Anfragen** angewandt. Das bedeutet, dass sie das Laden der Seite nicht verhindern, es sei denn, es wird explizit mit einem `$document`-Modifikator angegeben.
:::
@@ -169,7 +169,7 @@ modifiers = [modifier0, modifier1[, ...[, modifierN]]]
```
- **`pattern`** — eine Adressmaske. Jede Anfrage-URL wird mit dieser Maske abgeglichen. In der Vorlage können Sie auch die [unten](#basic-rules-special-characters) beschriebenen Sonderzeichen verwenden. Beachten Sie, dass AdGuard die URLs auf eine Länge von 4096 Zeichen kürzt, um den Abgleich zu beschleunigen und Probleme mit übermäßig langen URLs zu vermeiden.
-- **`@@`** — a marker that is used in rules of exception. To turn off filtering for a request, start your rule with this marker.
+- **`@@`** — a marker that is used in rules of exception. Um die Filterung für eine Anfrage zu deaktivieren, beginnen Sie Ihre Regel mit diesem Marker.
- **`modifiers`** — Parameter, die die Grundregel „verdeutlichen“. Einige von ihnen schränken den Anwendungsbereich der Regeln ein, andere können ihre Funktionsweise völlig verändern.
### Sonderzeichen {#basic-rules-special-characters}
@@ -201,13 +201,13 @@ Rules with regular expressions work more slowly, therefore it is recommended to
:::
-If you want a blocker to determine a regular expression, the `pattern` has to look like this:
+Wenn Sie möchten, dass ein Blocker einen regulären Ausdruck erkennt, müssen die `pattern` wie folgt aussehen:
```text
pattern = "/" regexp "/"
```
-For example, `/banner\d+/$third-party` this rule will apply the regular expression `banner\d+` to all third-party requests. Exclusion rule with regular expression looks like this: `@@/banner\d+/`.
+For example, `/banner\d+/$third-party` this rule will apply the regular expression `banner\d+` to all third-party requests. Die Ausschlussregel mit regulärem Ausdruck sieht wie folgt aus: `@@/banner\d+/`.
:::info Kompatibilität
@@ -215,17 +215,17 @@ AdGuard Safari and AdGuard for iOS do not fully support regular expressions beca
:::
-### Wildcard support for TLD (top-level domains) {#wildcard-for-tld}
+### Platzhalter-Unterstützung für TLD (Top-Level-Domains) {#wildcard-for-tld}
Wildcard characters are supported for TLDs of the domains in patterns of [cosmetic](#cosmetic-rules), [HTML filtering](#html-filtering-rules) and [JavaScript](#javascript-rules) rules.
-For cosmetic rules, e.g. `example.*##.banner`, multiple domains are matched due to the part `.*`, i.e. `example.com`, `sub.example.net`, `example.co.uk`, etc.
+Bei kosmetischen Regeln, z. B. `example.*##.banner`, werden aufgrund des Teils `.*`mehrere Domains abgeglichen, d. h. `example.com`, `sub.example.net`, `example.co.uk`, usw.
For basic rules the described logic is applicable only for the domains specified in [`$domain` modifier](#domain-modifier), e.g. `||*/banners/*$image,domain=example.*`.
:::info Kompatibilität
-In AdGuard for Windows, Mac, Android, and AdGuard Browser Extension rules with wildcard `.*` match any [public suffix (or eTLD)](https://publicsuffix.org/list/). But for AdGuard for Safari and iOS [the supported list of top-level domains](https://github.com/AdguardTeam/SafariConverterLib/blob/v2.0.31/Sources/ContentBlockerConverter/Compiler/BlockerEntryFactory.swift#L44) is limited due to Safari limitations.
+In AdGuard für Windows, Mac, Android und AdGuard Browsererweiterung passen Regeln mit dem Platzhalter `.*` auf jede [öffentliche Domainendung (oder eTLD)](https://publicsuffix.org/list/). Aber für AdGuard für Safari und iOS [ist die Liste der unterstützten Top-Level-Domains](https://github.com/AdguardTeam/SafariConverterLib/blob/v2.0.31/Sources/ContentBlockerConverter/Compiler/BlockerEntryFactory.swift#L44) aufgrund der Einschränkungen von Safari begrenzt.
:::
@@ -237,21 +237,21 @@ Regeln mit Platzhaltern für TLD werden vom AdGuard Inhaltsblocker nicht unterst
- `||example.org^$third-party` — diese Regel blockiert Anfragen von Drittanbietern zu `example.org` und seinen Subdomains.
-- `@@||example.com$document` — general exception rule. It completely disables filtering for `example.com` and all subdomains. There is a number of modifiers which can be used in exception rules. Weitere Einzelheiten finden Sie unter dem Link [unten](#exception-modifiers).
+- `@@||example.com$document` — allgemeine Ausnahmeregel. It completely disables filtering for `example.com` and all subdomains. Es gibt eine Reihe von Modifikatoren, die in Ausnahmeregeln verwendet werden können. Weitere Einzelheiten finden Sie unter dem Link [unten](#exception-modifiers).
-### Grundlegende Regelmodifikatoren
+### Modifikatoren für Grundregeln
-- [Basic modifiers](#basic-rules-basic-modifiers)
-- [Content-type modifiers](#content-type-modifiers)
+- [Basismodifikatoren](#basic-rules-basic-modifiers)
+- [Inhaltstyp-Modifikatoren](#content-type-modifiers)
- [Exception modifiers](#exception-modifiers)
:::note
-The features described in this section are intended for experienced users. They extend capabilities of "Basic rules", but in order to use them you need to have a basic understanding of the way your browser works.
+The features described in this section are intended for experienced users. Sie erweitern die Möglichkeiten der Grundregeln, aber um sie nutzen zu können, müssen Sie ein grundlegendes Verständnis der Funktionsweise Ihres Browsers haben.
:::
-You can change the behavior of a "basic rule" by using additional modifiers. Modifiers should be located in the end of the rule after a `$` sign and be separated by commas.
+Sie können das Verhalten einer Grundregel ändern, indem Sie zusätzliche Modifikatoren verwenden. Modifikatoren sollten am Ende der Regel nach einem `$`-Zeichen stehen und durch Kommata getrennt sein.
Beispiel:
@@ -259,9 +259,9 @@ Beispiel:
||domain.com^$popup,third-party
```
-### Basic modifiers {#basic-rules-basic-modifiers}
+### Basismodifikatoren {#basic-rules-basic-modifiers}
-The following modifiers are the most simple and frequently used. Im Grunde beschränken sie lediglich den Anwendungsbereich der Regeln.
+Die folgenden Modifikatoren sind die einfachsten und am häufigsten verwendeten. Im Grunde beschränken sie lediglich den Anwendungsbereich der Regeln.
@@ -326,7 +326,7 @@ Apps in the modifier value cannot have a wildcard, e.g. `$app=com.*.music`. Rege
Der Modifikator `$denyallow` ermöglicht es, die Erstellung zusätzlicher Regeln zu vermeiden, wenn eine bestimmte Regel für bestimmte Domänen deaktiviert werden muss. `$denyallow` matches only target domains and not referrer domains.
-Adding this modifier to a rule is equivalent to excluding the domains by the rule's matching pattern or to adding the corresponding exclusion rules. To add multiple domains to one rule, use the `|` character as a separator.
+Adding this modifier to a rule is equivalent to excluding the domains by the rule's matching pattern or to adding the corresponding exclusion rules. Um verschiedene Domains zu einer Regel hinzuzufügen, benutzen Sie `|` als Trennungszeichen.
**Beispiele**
@@ -354,15 +354,15 @@ or to the combination of these three:
- The rule's matching pattern cannot target any specific domains, e.g. it cannot start with `||`.
- Domains in the modifier value cannot be negated, e.g. `$denyallow=~x.com`, or have a wildcard TLD, e.g. `$denyallow=x.*`, or be a regular expression, e.g. `$denyallow=/\.(com\|org)/`.
-- `$denyallow` cannot be used together with [`$to`](#to-modifier). It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`.
+- `$denyallow` kann nicht zusammen mit [`$to`](#to-modifier)verwendet werden. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`.
-The rules which violate these restrictions are considered invalid.
+Die Regeln, die gegen diese Einschränkungen verstoßen, gelten als ungültig.
:::
:::info Kompatibilität
-Rules with `$denyallow` modifier are not supported by AdGuard for iOS, Safari, and AdGuard Content Blocker.
+Regeln mit dem Modifikator `$denyallow` werden von AdGuard Inhaltsblocker, AdGuard für iOS und AdGuard für Safari nicht unterstützt.
:::
@@ -372,16 +372,16 @@ Rules with `$denyallow` modifier are not supported by AdGuard for iOS, Safari, a
**Syntax**
-The modifier is a list of one or more expressions separated by the `|` symbol, each of which is matched against a domain in a particular way depending on its type (see below).
+Der Modifikator ist eine Liste von einem oder mehreren Ausdrücken, getrennt durch `|` Symbol, von dem jedes je nach Typ auf eine bestimmte Weise mit einer Domain abgeglichen wird (siehe unten).
```text
domains = ["~"] entry_0 ["|" ["~"] entry_1 ["|" ["~"]entry_2 ["|" ... ["|" ["~"]entry_N]]]]
entry_i = ( regular_domain / any_tld_domain / regexp )
```
-- **`regular_domain`** — a regular domain name (`domain.com`). Corresponds the specified domain and its subdomains. It is matched lexicographically.
-- **`any_tld_domain`** — a domain name ending with a wildcard character as a [public suffix](https://publicsuffix.org/learn/), e.g. for `example.*` it is `co.uk` in `example.co.uk`. Corresponds to the specified domain and its subdomains with any public suffix. It is matched lexicographically.
-- **`regexp`** — a regular expression, starts and ends with `/`. The pattern works the same way as in the basic URL rules, but the characters `/`, `$`, `,`, and `|` must be escaped with `\`.
+- **`regular_domain`** – ein regulärer Domainname (`domain.com`). Entspricht der angegebenen Domain und ihren Subdomains. It is matched lexicographically.
+- **`any_tld_domain`** — a domain name ending with a wildcard character as a [public suffix](https://publicsuffix.org/learn/), e.g. for `example.*` it is `co.uk` in `example.co.uk`. Entspricht der angegebenen Domain und ihren Subdomains mit einem beliebigen öffentlichen Suffix. It is matched lexicographically.
+- **`regexp`** – ein regulärer Ausdruck, beginnt und endet mit `/`. The pattern works the same way as in the basic URL rules, but the characters `/`, `$`, `,`, and `|` must be escaped with `\`.
:::info
@@ -391,30 +391,30 @@ Regeln mit dem Modifikator `$domain` als `regular_domain` werden von allen AdGua
**Beispiele**
-**Just `$domain`:**
+**Einfach `$domain`:**
-- `||baddomain.com^$domain=example.org` blocks requests that match the specified mask, and are sent from domain `example.org` or its subdomains.
-- `||baddomain.com^$domain=example.org|example.com` — the same rule, but it works for both `example.org` and `example.com`.
+- `||baddomain.com^$domain=example.org` sperrt Anfragen, die der angegebenen Maske entsprechen und von der Domain `example.org` oder ihren Subdomains gesendet werden.
+- `||baddomain.com^$domain=example.org|example.com` — die gleiche Regel, aber sie funktioniert sowohl für `example.org` als auch für `example.com`.
Wenn Sie möchten, dass die Regel nicht auf bestimmte Domains angewendet wird, beginnen Sie einen Domainnamen mit dem Tilde-Zeichen `~`.
**`$domain` und Negation `~`:**
-- `||baddomain.com^$domain=example.org` blocks requests that match the specified mask and are sent from the `example.org` domain or its subdomains.
-- `||baddomain.com^$domain=example.org|example.com` — the same rule, but it works for both `example.org` and `example.com`.
-- `||baddomain.com^$domain=~example.org` blocks requests matching the pattern sent from any domain except `example.org` and its subdomains.
+- `||baddomain.com^$domain=example.org` sperrt Anfragen, die der angegebenen Maske entsprechen und von der Domain `example.org` oder ihren Subdomains gesendet werden.
+- `||baddomain.com^$domain=example.org|example.com` — die gleiche Regel, aber sie funktioniert sowohl für `example.org` als auch für `example.com`.
+- `||baddomain.com^$domain=example.org` sperrt Anfragen, die der angegebenen Maske entsprechen und von der Domain `example.org` oder ihren Subdomains gesendet werden.
- `||baddomain.com^$domain=example.org|~foo.example.org` blocks requests sent from `example.org` and its subdomains, except the subdomain `foo.example.org`.
- `||baddomain.com^$domain=/(^\|.+\.)example\.(com\|org)\$/` blocks requests sent from `example.org` and `example.com` domains and all their subdomains.
- `||baddomain.com^$domain=~a.com|~b.*|~/(^\|.+\.)c\.(com\|org)\$/` blocks requests sent from any domains, except `a.com`, `b` with any public suffix (`b.com`, `b.co.uk`, etc.), `c.com`, `c.org`, and their subdomains.
-**`$domain` modifier matching target domain:**
+**`$domain`-Modifikator, der der Zieldomain entspricht:**
-In some cases the `$domain` modifier can match not only the referrer domain, but also the target domain. This happens when all the following conditions are met:
+In einigen Fällen kann der Modifikator `$domain` nicht nur mit der Referrer-Domain, sondern auch mit der Zieldomain übereinstimmen. Dies ist der Fall, wenn alle folgenden Bedingungen erfüllt sind:
-1. The request has the `document` content type
-1. The rule pattern does not match any particular domains
-1. The rule pattern does not contain regular expressions
-1. The `$domain` modifier contains only excluded domains, e.g. `$domain=~example.org|~example.com`
+1. Die Anfrage hat den Inhaltstyp `document`
+1. Das Regelmuster stimmt mit keiner bestimmten Domain überein
+1. Das Regelmuster enthält keine regulären Ausdrücke
+1. Der Modifikator `$domain` enthält nur ausgeschlossene Domains, z. B. `$domain=~example.org|~example.com`
The following predicate should be satisfied to perform a target domain matching:
@@ -426,11 +426,11 @@ That is, if the modifier `$domain` contains only excluded domains, then the rule
If some of the conditions above are not met but the rule contains [`$cookie`](#cookie-modifier) or [`$csp`](#csp-modifier) modifier, the target domain will still be matched.
-If the referrer matches a rule with `$domain` that explicitly excludes the referrer domain, then the rule will not be applied even if the target domain also matches the rule. This affects rules with [`$cookie`](#cookie-modifier) and [`$csp`](#csp-modifier) modifiers, too.
+If the referrer matches a rule with `$domain` that explicitly excludes the referrer domain, then the rule will not be applied even if the target domain also matches the rule. Dies betrifft auch Regeln mit den Modifikatoren [`$cookie`](#cookie-modifier) und [`$csp`](#csp-modifier).
**Beispiele**
-- `*$cookie,domain=example.org|example.com` will block cookies for all requests to and from `example.org` and `example.com`.
+- `*$cookie,domain=example.org|example.com` blockiert Cookies für alle Anfragen an und von `example.org` und `example.com`.
- `*$document,domain=example.org|example.com` blockiert alle Anfragen an und von `example.org` und `example.com`.
In den folgenden Beispielen wird davon ausgegangen, dass die Anfragen von `http://example.org/page` (dem Referrer) gesendet werden und die Ziel-URL `http://targetdomain.com/page` lautet.
@@ -440,7 +440,7 @@ In den folgenden Beispielen wird davon ausgegangen, dass die Anfragen von `http:
- `||*page$domain=targetdomain.com` will not be matched, as the pattern `||*page` may match specific domains, e.g. `example.page`.
- `||*page$domain=targetdomain.com,cookie` will be matched because the rule contains `$cookie` modifier despite the pattern `||*page` may match specific domains.
- `/banner\d+/$domain=targetdomain.com` will not be matched as it contains a regular expression.
-- `page$domain=targetdomain.com|~example.org` will not be matched because the referrer domain is explicitly excluded.
+- `Seite$domain=targetdomain.com|~example.org` wird nicht abgeglichen, da die Referrer-Domain explizit ausgeschlossen ist.
##### Einschränkungen des Modifikators `$domain` {#domain-modifier-limitations}
@@ -480,7 +480,7 @@ mit:
- **`h_name`** — required, an HTTP header name. It is matched case-insensitively.
- **`h_value`** — optional, an HTTP header value matching expression, it may be one of the following:
- **`string`** — a sequence of characters. It is matched against the header value lexicographically;
- - **`regexp`** — a regular expression, starts and ends with `/`. The pattern works the same way as in the basic URL rules, but the characters `/`, `$` and `,` must be escaped with `\`.
+ - **`regexp`** – ein regulärer Ausdruck, beginnt und endet mit `/`. The pattern works the same way as in the basic URL rules, but the characters `/`, `$` and `,` must be escaped with `\`.
The modifier part, `":" h_value`, may be omitted. In diesem Fall stimmt der Modifikator nur mit dem Headernamen überein.
@@ -528,11 +528,11 @@ Go to [rules priorities](#rule-priorities) for more details.
#### **`$match-case`** {#match-case-modifier}
-This modifier defines a rule which applies only to addresses that match the case. Default rules are case-insensitive.
+Dieser Modifikator definiert eine Regel, die nur für Adressen gilt, die auf den Fall zutreffen. Bei den Standardregeln wird die Groß- und Kleinschreibung nicht berücksichtigt.
**Beispiele**
-- `*/BannerAd.gif$match-case` — this rule will block `http://example.com/BannerAd.gif`, but not `http://example.com/bannerad.gif`.
+- `*/BannerAd.gif$match-case` – diese Regel blockiert `http://example.com/BannerAd.gif`, aber nicht `http://example.com/bannerad.gif`.
:::info Kompatibilität
@@ -571,7 +571,7 @@ AdGuard versucht, den Browser-Tab mit jeder Adresse zu schließen, die einer Spe
**Beispiele**
-- `||domain.com^$popup` — if you try to go to `http://domain.com/` from any page in the browser, a new tab in which specified site has to be opened will be closed by this rule.
+- `||domain.com^$popup` - wenn Sie versuchen, `http://domain.com/` von einer beliebigen Seite des Browsers aus aufzurufen, wird eine neue Registerkarte, in der die angegebene Website geöffnet werden muss, durch diese Regel geschlossen.
##### `$popup` modifier limitations {#popup-modifier-limitations}
@@ -579,8 +579,8 @@ AdGuard versucht, den Browser-Tab mit jeder Adresse zu schließen, die einer Spe
1. Der Modifikator `$popup` funktioniert am besten in der AdGuard Browsererweiterung für Chromium-basierte Browser und Firefox.
1. In [AdGuard for Chrome MV3][ext-mv3] rules with the [`$popup`][popup-in-mv3] modifier would not work, so we disable converting them to declarative rules. We will try to use them only in our [TSUrlFilter][] engine and close new tabs programmatically.
-1. In AdGuard for iOS and AdGuard for Safari, `$popup` rules simply block the page right away.
-1. In AdGuard for Windows, AdGuard for Mac, and AdGuard for Android, the `$popup` modifier may not detect a popup in some cases and it will not be blocked. The `$popup` modifier applies the `document` content type with a special flag which is passed to a blocking page. Blocking page itself can do some checks and close the window if it is really a popup. Otherwise, page should be loaded. It can be combined with other request type modifiers, such as `$third-party`, `$strict-third-party`, `$strict-first-party`, and `$important`.
+1. In AdGuard für iOS und AdGuard für Safari blockieren `$popup`-Regeln die Seite einfach sofort.
+1. In AdGuard für Windows, AdGuard für Mac und AdGuard für Android erkennt der Modifikator `$popup` in manchen Fällen möglicherweise kein Pop-up und es wird nicht blockiert. The `$popup` modifier applies the `document` content type with a special flag which is passed to a blocking page. Die blockierende Seite selbst kann einige Prüfungen durchführen und das Fenster schließen, wenn es sich wirklich um ein Pop-up-Fenster handelt. Andernfalls sollte die Seite geladen werden. It can be combined with other request type modifiers, such as `$third-party`, `$strict-third-party`, `$strict-first-party`, and `$important`.
:::
@@ -620,25 +620,25 @@ Works the same as the [`$third-party`](#third-party-modifier) modifier but also
:::note
-You can use a shorter name (alias) instead of using the full modifier name: `$strict3p`.
+Sie können einen kürzeren Namen (Alias) anstelle des vollständigen Modifikatornamens verwenden: `$strict3p`.
:::
:::info Kompatibilität
-Rules with the `$strict-third-party` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.16 or later.
+Regeln mit dem `$strict-third-party`-Modifikator werden von AdGuard für Windows, AdGuard für Mac und AdGuard für Android unterstützt, wenn [CoreLibs][] v1.16 oder höher verwendet wird.
:::
#### **`$third-party`** {#third-party-modifier}
-A restriction on third-party and custom requests. A third-party request is a request from an external domain. For example, a request to `example.org` from `domain.com` is a third-party request.
+Eine Einschränkung für Drittanbieter- und benutzerdefinierte Anfragen. Eine Drittanbieteranfrage ist eine Anfrage von einer externen Domain. Beispielsweise ist eine Anfrage an `example.org` von `domain.com` eine Anfrage eines Drittanbieters.
:::note
-To be considered as such, a third-party request should meet one of the following conditions:
+Um als solche zu gelten, muss eine Anfrage Dritter eine der folgenden Bedingungen erfüllen:
-1. Its referrer is not a subdomain of the target domain or vice versa. For example, a request to `subdomain.example.org` from `example.org` is not a third-party request
+1. Sein Referrer ist keine Subdomain der Zieldomain oder umgekehrt. Beispielsweise ist eine Anfrage an `subdomain.example.org` von `example.org` eine Anfrage eines Drittanbieters
1. Its `Sec-Fetch-Site` header is set to `cross-site`
:::
@@ -649,25 +649,25 @@ To be considered as such, a third-party request should meet one of the following
- `||domain.com^$third-party` — diese Regel gilt für alle Domains, außer `domain.com` und seinen Subdomains. Ein Beispiel für eine Drittanbieteranfrage: `http://example.org/banner.jpg`.
-Wenn ein Modifikator `$~third-party` vorhanden ist, wird die Regel nur auf Anfragen angewendet, die nicht von Dritten stammen. Which means, they have to be sent from the same domain.
+Wenn ein Modifikator `$~third-party` vorhanden ist, wird die Regel nur auf Anfragen angewendet, die nicht von Dritten stammen. Das heißt, sie müssen von derselben Domain gesendet werden.
**`$~third-party`:**
-- `||domain.com$~third-party` — diese Regel wird ausschließlich auf `domain.com`angewendet. Example of a non third-party request: `http://domain.com/icon.ico`.
+- `||domain.com$~third-party` — diese Regel wird ausschließlich auf `domain.com`angewendet. Beispiel für eine Anfrage, die nicht von Dritten stammt: `http://domain.com/icon.ico`.
:::note
-You may use a shorter name (alias) instead of using the full modifier name: `$3p`.
+Sie können einen kürzeren Namen (Alias) verwenden, anstatt den vollständigen Namen des Modifikators zu verwenden: `$3p`.
:::
#### **`$to`** {#to-modifier}
-`$to` limits the rule scope to requests made **to** the specified domains and their subdomains. To add multiple domains to one rule, use the `|` character as a separator.
+`$to` begrenzt den Geltungsbereich der Regel auf Anfragen, die **von** den angegebenen Domains und ihren Subdomains (wie durch den Referer HTTP-Header angegeben) gestellt werden. Um verschiedene Domains zu einer Regel hinzuzufügen, benutzen Sie `|` als Trennungszeichen.
**Beispiele**
-- `/ads$to=evil.com|evil.org` blocks any request to `evil.com` or `evil.org` and their subdomains with a path matching `/ads`.
+- `/ads$to=evil.com|evil.org` blockiert jede Anfrage an `evil.com` oder `evil.org` und ihre Subdomains mit einem Pfad, der mit `/ads`übereinstimmt.
- `/ads$to=~not.evil.com|evil.com` blocks any request to `evil.com` and its subdomains, with a path matching `/ads`, except requests to `not.evil.com` and its subdomains.
- `/ads$to=~good.com|~good.org` blocks any request with a path matching `/ads`, except requests to `good.com` or `good.org` and their subdomains.
@@ -683,7 +683,7 @@ Rules with the `$to` modifier are supported by AdGuard for Windows, AdGuard for
:::
-### Content-type modifiers {#content-type-modifiers}
+### Inhaltstyp-Modifikatoren {#content-type-modifiers}
There is a set of modifiers, which can be used to limit the rule's application area to certain type of content. These modifiers can also be combined to cover, for example, both images and scripts.
@@ -693,7 +693,7 @@ There is a big difference in how AdGuard determines the content type on differen
:::
-**Examples of content-type modifiers**
+**Beispiele für Inhaltstypmodifikatoren**
- `||example.org^$image` — entspricht allen Bildern von `example.org`.
- `||example.org^$script,stylesheet` — entspricht allen Skripten und Stilen von `example.org`.
@@ -731,7 +731,7 @@ There is a big difference in how AdGuard determines the content type on differen
Die Regel entspricht den Anforderungen für das Hauptdokument, d.h. HTML-Dokumente, die im Browser-Tab geladen werden. Es stimmt nicht mit Iframes überein, für diese gibt es den Modifikator [`$subdocument`](#subdocument-modifier).
-Standardmäßig blockiert der AdGuard nicht die Anfragen, die im Browser-Tab geladen werden (z.B. "Mainframe-Bypass"). The idea is not to prevent pages from loading as the user clearly indicated that they want this page to be loaded. However, if the `$document` modifier is specified explicitly, AdGuard does not use that logic and prevents the page load. Instead, it responds with a "blocking page".
+Standardmäßig blockiert der AdGuard nicht die Anfragen, die im Browser-Tab geladen werden (z.B. "Mainframe-Bypass"). The idea is not to prevent pages from loading as the user clearly indicated that they want this page to be loaded. Wenn jedoch der Modifikator `$document` explizit angegeben wird, verwendet AdGuard diese Logik nicht und verhindert das Laden der Seite. Instead, it responds with a "blocking page".
If this modifier is used with an exclusion rule (`@@`), it completely disables blocking on corresponding pages. It is equivalent to using `$elemhide`, `$content`, `$urlblock`, `$jsinject`, `$extension` modifiers simultaneously.
@@ -813,71 +813,71 @@ The rule corresponds to requests for built-in pages — HTML tags `frame` and `i
:::note
-You may use a shorter name (alias) instead of using the full modifier name: `$frame`.
+Sie können einen kürzeren Namen (Alias) verwenden, anstatt den vollständigen Namen des Modifikators zu verwenden: `$frame`.
:::
-##### `$subdocument` modified limitations {#subdocument-modifier-limitations}
+##### Einschränkungen des Modifikators `$subdocument` {#subdocument-modifier-limitations}
:::caution Beschränkungen
-In AdGuard for Windows, Mac, and Android subdocuments are being detected by the [Sec-Fetch-Dest header][] if it is present. Otherwise, some main pages may be treated as subdocuments.
+In AdGuard für Windows, Mac und Android werden Unterdokumente durch den [Sec-Fetch-Dest-Header][] erkannt, sofern dieser vorhanden ist. Andernfalls werden einige Hauptseiten möglicherweise als Unterdokumente behandelt.
:::
:::info Kompatibilität
-Rules with `$subdocument` modifier are not supported by AdGuard Content Blocker.
+Regeln mit dem `$subdocument`-Modifikator werden von AdGuard Inhaltsblocker nicht unterstützt.
:::
#### **`$websocket`** {#websocket-modifier}
-The rule applies only to WebSocket connections.
+Die Regel gilt nur für WebSocket-Verbindungen.
-##### `$websocket` modifier limitations {#websocket-modifier-limitations}
+##### Einschränkungen des Modifikators `$websocket` {#websocket-modifier-limitations}
:::caution Beschränkungen
-For AdGuard for Safari and AdGuard for iOS, it is supported on devices with macOS Monterey (version 12) and iOS 16 or higher respectively.
+Für AdGuard für Safari und AdGuard für iOS wird es auf Geräten mit macOS Monterey (Version 12) und iOS 16 oder höher unterstützt.
:::
:::info Kompatibilität
-`$websocket` modifier is supported in all AdGuard products except AdGuard Content Blocker.
+`$websocket` wird von allen AdGuard-Produkten außer AdGuard Inhaltsblocker unterstützt.
:::
#### **`$xmlhttprequest`** {#xmlhttprequest-modifier}
-The rule applies only to ajax requests (requests sent via javascript object `XMLHttpRequest`).
+Die Regel gilt nur für Ajax-Anfragen (Anfragen, die über das Javascript-Objekt `XMLHttpRequest` gesendet werden).
:::note
-You may use a shorter name (alias) instead of using the full modifier name: `$xhr`.
+Sie können einen kürzeren Namen (Alias) verwenden, anstatt den vollständigen Namen des Modifikators zu verwenden: `$xhr`.
:::
:::info Kompatibilität
-AdGuard for Windows, Mac, Android when filtering older browsers cannot accurately detect this type and sometimes detects it as [`$other`](#other-modifier) or [`$script`](#script-modifier). They can only reliably detect this content type when filtering modern browsers that support [Fetch metadata request headers](https://developer.mozilla.org/en-US/docs/Glossary/Fetch_metadata_request_header).
+AdGuard for Windows, Mac, Android when filtering older browsers cannot accurately detect this type and sometimes detects it as [`$other`](#other-modifier) or [`$script`](#script-modifier). Sie können diesen Inhaltstyp nur zuverlässig erkennen, wenn sie moderne Browser filtern, die [Fetch metadata request headers](https://developer.mozilla.org/en-US/docs/Glossary/Fetch_metadata_request_header)unterstützen.
:::
-#### **`$object-subrequest` (removed)** {#object-subrequest-modifier}
+#### **`$object-subrequest` (entfernt)** {#object-subrequest-modifier}
:::danger Beseitigungshinweise
-`$object-subrequest` modifier is removed and is no longer supported. Rules with it are considered as invalid. The rule corresponds to requests by browser plugins (it is usually Flash).
+Der Modifikator `$object-subrequest` wurde entfernt und wird nicht mehr unterstützt. Regeln mit einem solchen Modifikator werden als ungültig betrachtet. Die Regel entspricht Anfragen von Browser-Plugins (in der Regel handelt es sich um Flash).
:::
-#### **`$webrtc` (removed)** {#webrtc-modifier}
+#### **`$webrtc` (entfernt)** {#webrtc-modifier}
:::danger Beseitigungshinweise
-This modifier is removed and is no longer supported. Rules with it are considered as invalid. If you need to suppress WebRTC, consider using the `nowebrtc` [scriptlet](#scriptlets).
+This modifier is removed and is no longer supported. Regeln mit einem solchen Modifikator werden als ungültig betrachtet. If you need to suppress WebRTC, consider using the `nowebrtc` [scriptlet](#scriptlets).
:::
@@ -888,13 +888,13 @@ Die Regel gilt nur für WebRTC-Verbindungen.
- `||example.com^$webrtc,domain=example.org` sperrt webRTC-Verbindungen zu `example.com` von `example.org`.
- `@@*$webrtc,domain=example.org` deaktiviert den RTC-Wrapper für `example.org`.
-### Exception rules modifiers {#exception-modifiers}
+### Modifikatoren für Ausschlussregeln {#exception-modifiers}
-Exception rules disable the other basic rules for the addresses to which they correspond. They begin with a `@@` mark. All the basic modifiers listed above can be applied to them and they also have a few special modifiers.
+Ausschlussregeln deaktivieren die anderen Grundregeln für die Adressen, denen sie entsprechen. They begin with a `@@` mark. Alle oben aufgeführten Basismodifikatoren können auf sie angewendet werden und sie verfügen auch über einige spezielle Modifikatoren.
:::note Visuelle Darstellung
-We recommend to get acquainted with [the Adblock Plus filter cheatsheet](https://adblockplus.org/filter-cheatsheet#blocking), for better understanding of how exception rules should be made.
+Wir empfehlen auch, sich mit [dem Adblock Plus Filter Tabellenblatt](https://adblockplus.org/filter-cheatsheet#blocking) vertraut zu machen, um besser zu verstehen, wie solche Regeln erstellt werden sollten.
:::
@@ -922,7 +922,7 @@ We recommend to get acquainted with [the Adblock Plus filter cheatsheet](https:/
#### **`$content`** {#content-modifier}
-Disables [HTML filtering](#html-filtering-rules), [`$hls`](#hls-modifier), [`$replace`](#replace-modifier), and [`$jsonprune`](#jsonprune-modifier) rules on the pages that match the rule.
+Deaktiviert [HTML-Filterung](#html-filtering-rules), [`$hls`](#hls-modifier), [`$replace`](#replace-modifier) und [`$jsonprune`](#jsonprune-modifier) Regeln auf den Seiten, die der Regel entsprechen.
**Beispiele**
@@ -952,11 +952,11 @@ Deaktiviert bestimmte Benutzerskripte oder alle Benutzerskripte für eine bestim
$extension[="userscript_name1"[|"userscript_name2"[|"userscript_name3"[...]]]]
```
-`userscript_name(i)` stands for a specific userscript name to be disabled by the modifier. The modifier can contain any number of userscript names or none. In the latter case the modifier disables all the userscripts.
+`userscript_name(i)` steht für einen bestimmten Benutzerskript-Namen, der durch den Modifikator deaktiviert werden soll. Der Modifikator kann eine beliebige Anzahl von Benutzerskriptnamen oder keinen enthalten. Im letzteren Fall deaktiviert der Modifikator alle Benutzerskripte.
-Userscript names usually contain spaces or other special characters, which is why you should enclose the name in quotes. Both single (`'`) and double (`"`) ASCII quotes are supported. Multiple userscript names should be separated with a pipe (`|`). However, if a userscript name is a single word without any special characters, it can be used without quotes.
+Benutzerskriptnamen enthalten normalerweise Leerzeichen oder andere Sonderzeichen, weshalb Sie den Namen in Anführungszeichen setzen sollten. Both single (`'`) and double (`"`) ASCII quotes are supported. Mehrere Benutzerskriptnamen sollten durch einen senkrechten Strich (`|`) getrennt werden. Wenn der Name eines Benutzerskripts jedoch ein einzelnes Wort ohne Sonderzeichen ist, kann er ohne Anführungszeichen verwendet werden.
-You can also exclude a userscript by adding a `~` character before it. In this case, the userscript will not be disabled by the modifier.
+Sie können ein Benutzerskript auch ausschließen, indem Sie ihm ein `~` Zeichen voranstellen. In diesem Fall wird das Benutzerskript nicht durch den Modifikator deaktiviert.
```adblock
$extension=~"userscript name"
@@ -964,11 +964,11 @@ $extension=~"userscript name"
:::note
-When excluding a userscript, you must place `~` outside the quotes.
+Wenn Sie ein Benutzerskript ausschließen, müssen Sie `~` außerhalb der Anführungszeichen setzen.
:::
-If a userscript's name includes quotes (`"`), commas (`,`), or pipes (`|`), they must be escaped with a backslash (`\`).
+Wenn der Name eines Benutzerskripts Anführungszeichen (`"`), Kommas (`,`) oder Pipes (`|`) enthält, müssen diese mit einem Backslash (`\`) maskiert werden.
```adblock
$extension="userscript name\, with \"quote\""
@@ -993,7 +993,7 @@ $extension="userscript name\, with \"quote\""
#### **`$jsinject`** {#jsinject-modifier}
-Forbids adding of JavaScript code to the page. You can read about scriptlets and javascript rules further.
+Verhindert das Hinzufügen von JavaScript-Code zur Seite. Weitere Informationen zu Scriptlets und Javascript-Regeln finden Sie weiter unten.
**Beispiele**
@@ -1095,7 +1095,7 @@ Rules with `$urlblock` modifier are not supported by AdGuard Content Blocker, an
#### Generic rules {#exception-modifiers-generic-rules}
-Before we can proceed to the next modifiers, we have to make a definition of *generic rules*. The rule is generic if it is not limited to specific domains. Wildcard character `*` is supported as well.
+Before we can proceed to the next modifiers, we have to make a definition of *generic rules*. The rule is generic if it is not limited to specific domains. Das Platzhalterzeichen `*` wird ebenfalls unterstützt.
For example, these rules are generic:
@@ -1106,10 +1106,10 @@ For example, these rules are generic:
*#@#.adsblock
~domain.com###banner
||domain.com^
-||domain.com^$domain=~example.com
+||domain.com^$domain=~example .com
```
-And these are not:
+Und diese nicht:
```adblock
domain.com###banner
@@ -1273,7 +1273,7 @@ In that case, the `$badfilter` rule will disable the corresponding rule for doma
- `/some$domain=example.*` is disabled for `example.com` and `example.org` by `/some$domain=example.com|example.org,badfilter`
- `/some$domain=example.com|example.org|example.io` is NOT disabled for `example.com` by `/some$domain=example.com|~example.org,badfilter` because the value of `$domain` modifier contains a negated domain
-##### `$badfilter` modifier limitations {#badfilter-modifier-limitations}
+##### Einschränkungen des Modifikators `$badfilter` {#badfilter-modifier-limitations}
:::caution Beschränkungen
@@ -1318,9 +1318,9 @@ every time AdGuard encounters a cookie called `NAME` in a request to `example.or
- Set its expiration date to current time plus `3600` seconds
- Makes the cookie use [Same-Site](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite) "lax" strategy.
-**Escaping special characters**
+**Escapen von Sonderzeichen**
-If regular expression `name` is used for matching, two characters must be escaped: comma `,` and dollar sign `$`. Use backslash `\` to escape each of them. For example, escaped comma looks like this: `\,`.
+Wenn regulärer Ausdruck `name` zum Abgleichen verwendet wird, müssen zwei Zeichen umgangen werden: Komma `,` und Dollarzeichen `$`. Verwenden Sie einen Backslash `\`, um jeden von ihnen zu escapen. For example, escaped comma looks like this: `\,`.
**Beispiele**
@@ -1358,7 +1358,7 @@ Rules with `$cookie` modifier are not supported by AdGuard Content Blocker, AdGu
#### **`$csp`** {#csp-modifier}
-This modifier completely changes the rule behavior. If it is applied to a rule, the rule will not block the matching request. Response headers will be modified instead.
+Dieser Modifikator ändert das Verhalten der Regel vollständig. Wenn sie auf eine Regel angewendet wird, blockiert die Regel die entsprechende Anfrage nicht. Response headers will be modified instead.
:::info
@@ -1381,7 +1381,7 @@ In case if multiple `$csp` rules match a single request, we will apply each of t
**Beispiele**
- `||example.org^$csp=frame-src 'none'` blocks all frames on example.org and its subdomains.
-- `@@||example.org/page/*$csp=frame-src 'none'` disables all rules with the `$csp` modifier exactly matching `frame-src 'none'` on all the pages matching the rule pattern. For instance, the rule above.
+- `@@||example.org/page/*$csp=frame-src 'none'` disables all rules with the `$csp` modifier exactly matching `frame-src 'none'` on all the pages matching the rule pattern. Zum Beispiel, die Regel oben.
- `@@||example.org/page/*$csp` disables all the `$csp` rules on all the pages matching the rule pattern.
- `||example.org^$csp=script-src 'self' 'unsafe-eval' http: https:` disables inline scripts on all the pages matching the rule pattern.
- `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$csp` rules on all the pages matching the rule pattern.
@@ -1738,10 +1738,7 @@ In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.11 or later, JSONPa
{
"elems": [
{
- "a": {"b": {"c": 123}},
- },
- {
- "a": {"b": {"c": "abc"}}
+ "a": {"b": {"c": 123}}
}
]
}
@@ -2049,7 +2046,7 @@ Only AdGuard for Windows, Mac, and Android are technically capable of using rule
#### **`$permissions`** {#permissions-modifier}
-This modifier completely changes the rule behavior. If it is applied to a rule, the rule will not block the matching request. Response headers will be modified instead.
+Dieser Modifikator ändert das Verhalten der Regel vollständig. Wenn er auf eine Regel angewendet wird, blockiert die Regel die entsprechende Anfrage nicht. Response headers will be modified instead.
:::info
@@ -2073,7 +2070,7 @@ The list of available directives is available [here](https://developer.mozilla.o
**Beispiele**
- `||example.org^$permissions=autoplay=()` disallows autoplay media requested through the `HTMLMediaElement` interface across `example.org`.
-- `@@||example.org/page/*$permissions=autoplay=()` disables all rules with the `$permissions` modifier exactly matching `autoplay=()` on all the pages matching the rule pattern. For instance, the rule above. It is important to note that the exception rule only takes effect in the case of an **exact value match**. For example, if you want to disable the rule `$permissions=a=()\,b=()`, you need exception rule `@@$permissions=a=()\,b=()`, and **not** `@@$permissions=b=()\,a=()`, **nor** `@@$permissions=b=()` because `b=()\,a=()` or `b=()` does not match with `a=()\,b=()`.
+- `@@||example.org/page/*$permissions=autoplay=()` disables all rules with the `$permissions` modifier exactly matching `autoplay=()` on all the pages matching the rule pattern. Zum Beispiel, die Regel oben. It is important to note that the exception rule only takes effect in the case of an **exact value match**. For example, if you want to disable the rule `$permissions=a=()\,b=()`, you need exception rule `@@$permissions=a=()\,b=()`, and **not** `@@$permissions=b=()\,a=()`, **nor** `@@$permissions=b=()` because `b=()\,a=()` or `b=()` does not match with `a=()\,b=()`.
- `@@||example.org/page/*$permissions` disables all the `$permissions` rules on all the pages matching the rule pattern.
- `$domain=example.org|example.com,permissions=storage-access=()\, camera=()` disallows using the Storage Access API to request access to unpartitioned cookies and using video input devices across `example.org` and `example.com`.
- `$domain=example.org|example.com,permissions=storage-access=()|camera=()` does the same — a `|` can be used to separate the features instead of an escaped comma.
@@ -2333,7 +2330,7 @@ You can also use regular expressions to match query parameters and/or their valu
- `$removeparam=/regexp/[options]` — removes query parameters that matches the `regexp` regular expression from URLs of any request. Unlike basic syntax, it means *"remove query parameters normalized to a `name=value` string which match the `regexp` regular expression"*. `[options]` here is the list of regular expression options. At the moment, the only supported option is `i` which makes matching case-insensitive.
-**Escaping special characters**
+**Escapen von Sonderzeichen**
Do not forget to escape special characters like `,`, `/` and `$` in the regular expressions. Use `\` character for that purpose. For example, an escaped comma should look like this: `\,`.
@@ -2502,7 +2499,7 @@ With these rules, specified UTM parameters will be removed from any request save
#### **`$replace`** {#replace-modifier}
-This modifier completely changes the rule behavior. If it is applied, the rule will not block the request. The response is going to be modified instead.
+Dieser Modifikator ändert das Verhalten der Regel vollständig. If it is applied, the rule will not block the request. The response is going to be modified instead.
You will need some knowledge of regular expressions to use `$replace` modifier.
@@ -3384,7 +3381,7 @@ The `:matches-attr()` pseudo-class allows selecting an element by its attributes
- `name` — required, simple string *or* string with wildcard *or* regular expression for attribute name matching
- `value` — optional, simple string *or* string with wildcard *or* regular expression for attribute value matching
-**Escaping special characters**
+**Escapen von Sonderzeichen**
For **regexp** patterns `"` and `\` should be **escaped**, e.g. `div:matches-attr(class=/[\\w]{5}/)`.
@@ -3440,7 +3437,7 @@ The `:matches-property()` pseudo-class allows selecting an element by matching i
- `name` — required, simple string *or* string with wildcard *or* regular expression for element property name matching
- `value` — optional, simple string *or* string with wildcard *or* regular expression for element property value matching
-**Escaping special characters**
+**Escapen von Sonderzeichen**
For **regexp** patterns `"` and `\` must be escaped, e.g. `div:matches-property(prop=/[\\w]{4}/)`.
@@ -3753,7 +3750,7 @@ The `:not()` is considered as a standard CSS pseudo-class inside the argument of
:::danger Beseitigungshinweise
-The `:if-not()` pseudo-class is removed and is no longer supported. Rules with it are considered as invalid.
+The `:if-not()` pseudo-class is removed and is no longer supported. Regeln mit einem solchen Modifikator werden als ungültig betrachtet.
:::
@@ -4758,7 +4755,7 @@ The following scriptlets also may be used for debug purposes:
[popup-in-mv3]: https://github.com/AdguardTeam/tsurlfilter/tree/epic/tswebextension/packages/tsurlfilter/src/rules/declarative-converter#popup
-[Sec-Fetch-Dest header]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Dest
+[Sec-Fetch-Dest-Header]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Dest
[jsinject-in-mv3]: https://github.com/AdguardTeam/tsurlfilter/tree/release/v3.1/packages/tsurlfilter/src/rules/declarative-converter#jsinject
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c9fec77c198..026ebffc315 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ Und selbst wenn eine Regel schließlich zu einem Filter hinzugefügt wird, bedeu
Sie [haben Zugang zu einem speziellen Web Reporting Tool](https://reports.adguard.com/new_issue.html). Dank Benutzerbeschwerden können sich Filterentwickler auf die Korrektur ihrer Filterlisten konzentrieren und nicht darauf, das Internet nach neuen und alten nicht blockierten Anzeigen zu durchsuchen.
-Filter können mehr, als nur Werbung zu blockieren. Es gibt Filter, die Tracking, Social-Media-Widgets und Ärgernisse wie Cookie-Hinweise blockieren. Verschiedene Benutzer können unterschiedliche Kombinationen von Filtern wählen, um ihren persönlichen Vorlieben zu entsprechen. Es gibt Websites wie [filterlists.com](https://filterlists.com/), die sich auf Filterlisten spezialisiert haben und über große Datenbanken verfügen.
+Filter können mehr, als nur Werbung zu blockieren. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Verschiedene Benutzer können unterschiedliche Kombinationen von Filtern wählen, um ihren persönlichen Vorlieben zu entsprechen. Es gibt Websites wie [filterlists.com](https://filterlists.com/), die sich auf Filterlisten spezialisiert haben und über große Datenbanken verfügen.
Wir entwickeln und pflegen [unsere eigenen Filterlisten](../adguard-filters), die mit AdGuard oder anderen Werbeblockern verwendet werden können.
@@ -62,3 +62,40 @@ Diese Regeln sind recht kompliziert und erfordern, dass dem Werbeblocker bestimm
Es gibt noch andere Arten von Filterregeln, die jedoch mehr technisches Wissen erfordern, um ihre Funktionsweise zu verstehen. Wenn Sie daran interessiert sind, [sehen Sie sich unseren umfassenden Leitfaden zu Filterregeln in dem verlinkten Artikel an](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/de/docusaurus-plugin-content-docs/current/general/browsing-security.md
index 41e10693897..8f4b0764cf7 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Jedes Mal, wenn Sie eine Website besuchen, tauscht Ihr lokaler Client Informatio
AdGuard bietet den bestmöglichen Schutz, indem es sowohl die Seiten als auch alle auf ihnen geladenen Objekte überprüft. AdGuard prüft URLs und Domain-Namen anhand von Hash-Präfixen, nicht anhand der vollständigen URLs, so dass unsere Server keine Informationen über die von Ihnen besuchten Websites speichern und Ihre persönlichen Daten vollkommen sicher sind. Unsere Server antworten auf die Anfrage der App mit einer Liste aller möglichen Adressen, die mit dem Hash-Präfix übereinstimmen. Wenn eine potenzielle Bedrohung auf der Grundlage von Hash-Übereinstimmungen erkannt wird, wird der Zugriff auf diese Website sofort gesperrt.
-![DNS-Warnung](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard-Warnung](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In Browsererweiterungen
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/de/docusaurus-plugin-content-docs/current/general/extensions.md
index 8950497c96b..9faab19eb7f 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -5,81 +5,81 @@ sidebar_position: 6
## Benutzerskripte
-Userscripts (we also call them "extensions") are, de facto, miniprograms written in JavaScript. Sie ändern oder erweitern die Funktionalität einer oder mehrerer Websites. Many AdGuard users may be already familiar with such userscripts as AdGuard Assistant, Popup Blocker, and AdGuard Extra.
+Benutzerskripte (wir nennen sie auch „Erweiterungen“) sind im Grunde genommen in JavaScript geschriebene Miniprogramme. Sie ändern oder erweitern die Funktionalität einer oder mehrerer Websites. Viele AdGuard-Benutzer sind vielleicht bereits mit Benutzerskripten wie AdGuard Assistant, Popup Blocker und AdGuard Extra vertraut.
-:::note Supported apps
+:::note Unterstützte Apps
-AdGuard can significantly broaden website functionality by acting as a userscript manager. You can add your custom scripts or manage the existing ones in our three products: [AdGuard for Windows](/adguard-for-windows/features/extensions), [AdGuard for Android](/adguard-for-android/features/settings#userscripts), and [AdGuard for Mac](/adguard-for-mac/features/extensions).
+AdGuard kann die Funktionalität einer Website erheblich erweitern, indem er als Benutzer-Script-Verwaltung fungiert. Sie können Ihre eigenen Skripte hinzufügen oder die vorhandenen Skripte in unseren drei Produkten verwalten: [AdGuard für Windows](/adguard-for-windows/features/extensions), [AdGuard für Android](/adguard-for-android/features/settings#userscripts), und [AdGuard für Mac](/adguard-for-mac/features/extensions).
:::
### Empfohlene AdGuard-Skripte
-Diese Benutzerskripte stammen direkt von AdGuard und wir können garantieren, dass sie effektiv und sicher sind. For some of the userscripts developed by others that we consider good and reliable, [scroll down to the next section](#top-picks). You can also find some of the [popular websites with scripts](#more-userscripts) below, but remember that whenever you download a userscript from an unknown source, you are exposing yourself to a certain risk, as some scripts may be harmful to your computer.
+Diese Benutzerskripte stammen direkt von AdGuard und wir können garantieren, dass sie effektiv und sicher sind. Für einige der von anderen entwickelten Benutzerskripte, die wir für gut und zuverlässig halten, [blättern Sie nach unten zum nächsten Abschnitt](#top-picks). Sie können auch einige der [beliebten Websites mit Skripten](#more-userscripts) unten finden, aber bedenken Sie, dass Sie sich einem gewissen Risiko aussetzen, wenn Sie ein Benutzerskript von einer unbekannten Quelle herunterladen, da einige Skripte schädlich für Ihren Computer sein können.
#### AdGuard Extra
-Eine Erweiterung, die Werbung in schwierigen Fällen blockiert, wenn der übliche filterbasierte Ansatz nicht ausreicht. AdGuard Extra comes pre-installed in AdGuard standalone apps, except for the one for iOS, so you don't need to do anything to enable it. Wenn Sie es jedoch zusammen mit AdGuard Browsererweiterung oder einem anderen Werbeblocker verwenden möchten, müssen Sie eine zusätzliche Erweiterung verwenden. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/AdGuardExtra).
+Eine Erweiterung, die Werbung in schwierigen Fällen blockiert, wenn der übliche filterbasierte Ansatz nicht ausreicht. AdGuard Extra ist in den Einzelanwendungen von AdGuard vorinstalliert, mit Ausnahme der Anwendung für iOS, sodass Sie nichts tun müssen, um es zu aktivieren. Wenn Sie es jedoch zusammen mit AdGuard Browsererweiterung oder einem anderen Werbeblocker verwenden möchten, müssen Sie eine zusätzliche Erweiterung verwenden. Erfahren Sie mehr auf [GitHub](https://github.com/AdguardTeam/AdGuardExtra) über dieses Benutzerskript und wie man es installiert.
![AdGuard Extra](https://cdn.adtidy.org/content/kb/ad_blocker/general/adguard-extra.png)
#### AdGuard Pop-up-Blocker
-The name speaks for itself: it blocks popups — one of the most annoying types of ads on websites. Learn more about this userscript, its key features, and installation on [GitHub](https://github.com/AdguardTeam/PopupBlocker).
+Der Name spricht für sich selbst: Es sperrt Popups — eine der lästigsten Arten von Werbung auf Websites. Erfahren Sie mehr auf [GitHub](https://github.com/AdguardTeam/PopupBlocker) über dieses Benutzerskript, dessen Hauptmerkmale und Installation.
-![AdGuard Popup Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png)
+![AdGuard Pop-up-Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png)
#### AdGuard-Assistent (alte Version)
-This custom extension is designed to control filtering directly from the browser page (manual blocking, allowlisting, etc.).
+Diese benutzerdefinierte Erweiterung wurde entwickelt, um das Filtern direkt von der Browserseite aus zu steuern (manuelles Sperren, Zulassen von Listen usw.).
:::note
-This version of Assistant is legacy and there is no point in using it on new systems, as it has been replaced with the full-fledged [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). However, the legacy Assistant may be useful if there is no Browser Assistant for your browser. If this is your case, you can learn how to install AdGuard Assistant on [GitHub](https://github.com/AdguardTeam/AdguardAssistant).
+Diese Version des Assistenten ist veraltet und es ergibt keinen Sinn, sie auf neuen Systemen zu verwenden, da sie durch den vollwertigen [Browser-Assistenten] (https://adguard.com/adguard-assistant/overview.html) ersetzt wurde. Der bisherige Assistent kann jedoch nützlich sein, wenn es keinen Browser-Assistenten für Ihren Browser gibt. Wenn dies bei Ihnen der Fall ist, können Sie auf [GitHub](https://github.com/AdguardTeam/AdguardAssistant) erfahren, wie Sie den AdGuard Assistenten installieren.
:::
#### AMP deaktivieren
-Ein Skript, das nur in AdGuard für Android vorinstalliert ist. Es deaktiviert AMP (Accelerated Mobile Pages) auf der Google-Suchergebnisseite. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/DisableAMP).
+Ein Skript, das nur in AdGuard für Android vorinstalliert ist. Es deaktiviert AMP (Accelerated Mobile Pages) auf der Google-Suchergebnisseite. Erfahren Sie mehr auf [GitHub](https://github.com/AdguardTeam/DisableAMP) über dieses Benutzerskript und wie man es installiert.
-![Disable AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png)
+![AMP deaktivieren](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png)
-### Top picks outside AdGuard{#top-picks}
+### Beste Tipps außerhalb von AdGuard{#top-picks}
-These userscripts are not developed by AdGuard, and therefore we can't give a 100% guarantee that they are safe and/or work at all times. However, in our experience they deserve a recommendation because they've all earned their good reputation.
+Diese Benutzerskripte werden nicht von AdGuard entwickelt und daher können wir keine 100%ige Garantie geben, dass sie sicher sind und/oder jederzeit funktionieren. Unserer Erfahrung nach verdienen sie jedoch eine Empfehlung, weil sie alle ihren guten Ruf verdient haben.
#### Don't track me Google
-This script removes Google's tracking feature from the links in Google search results. It speeds up the loading of search results and allows you to right-click or tap to copy the link URL.
+Dieses Skript entfernt die Tracking-Funktion von Google aus den Links in den Google-Suchergebnissen. Sie beschleunigt das Laden der Suchergebnisse und ermöglicht es Ihnen, mit der rechten Maustaste zu klicken oder zu tippen, um die Link-URL zu kopieren.
-Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
+Der Quellcode ist [auf GitHub verfügbar](https://github.com/Rob--W/dont-track-me-google). Dieses Benutzerskript kann von [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) heruntergeladen und in jeder AdGuard CoreLibs-basierten Anwendung installiert werden.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+Ein Benutzerskript für Besucher koreanischer und einiger internationaler Websites. Das tinyShield-Benutzerskript blockiert Ad-Shield-Werbung und Anti-Adblock. Dieses Benutzerskript kann in AdGuard CoreLibs-basierten Anwendungen, Violentmonkey, Tampermonkey und [quoid/userscripts](https://github.com/quoid/userscripts) installiert werden. Erfahren Sie mehr auf [GitHub](https://github.com/List-KR/tinyShield) über dieses Benutzerskript und wie man es installiert.
### Wo kann man weitere Benutzerskripte erhalten? {#more-userscripts}
-Since userscripts are mainly created by enthusiasts, you should be cautious when installing them. Any script from an unknown source carries a potential risk. Yet, there is a great variety of interesting scripts that, if installed carefully and responsibly, can really make using some websites more convenient.
+Da Benutzerskripte hauptsächlich von Enthusiasten erstellt werden, sollten Sie bei deren Installation vorsichtig sein. Jedes Skript aus einer unbekannten Quelle birgt ein potenzielles Risiko. Es gibt jedoch eine Vielzahl interessanter Skripte, die, wenn sie sorgfältig und verantwortungsbewusst installiert werden, die Nutzung einiger Websites wirklich bequemer machen können.
Im Folgenden werden einige der beliebtesten Benutzerskript-Kataloge beschrieben.
#### Userscript.Zone
-[Userscript.Zone](https://www.userscript.zone) is a website that allows searching for userscripts by entering a matching URL or domain. The website is easy to use and has a high level of credibility as only scripts from moderated pages are displayed.
+[Userscript.Zone](https://www.userscript.zone) ist eine Website, die die Suche nach Benutzerskripten durch Eingabe einer passenden URL oder Domain ermöglicht. Die Website ist einfach zu bedienen und hat ein hohes Maß an Glaubwürdigkeit, da nur Skripte von moderierten Seiten angezeigt werden.
#### Greasy Fork
-[Greasy Fork](https://greasyfork.org/) is a userscript catalog of Stylish creators. The scripts in this catalog are moderated, so their credibility is much higher.
+[Greasy Fork](https://greasyfork.org/) ist ein Benutzerskript-Katalog von Stylish-Entwicklern. Die Skripte in diesem Katalog werden moderiert, so dass ihre Glaubwürdigkeit entsprechend höher ist.
#### OpenUserJS.org
-[OpenUserJS.org](https://openuserjs.org/) is an open-source userscript catalog written in nodeJS. It's not moderated, so keep an eye out for suspicious scripts.
+[OpenUserJS.org](https://openuserjs.org/) ist ein quelloffener Benutzerskript-Katalog, der in nodeJS geschrieben ist. Dieser Katalog wird nicht moderiert, achten Sie also auf verdächtige Skripte.
#### Community
-If you like the idea of customizing your browser with userscripts and have questions, you can ask them on one of these websites:
+Wenn Ihnen die Idee gefällt, Ihren Browser mit Benutzerskripten anzupassen, und Sie Fragen haben, können Sie diese auf einer dieser Websites stellen:
- [Stackoverflow](https://stackoverflow.com/questions/tagged/userscripts)
- [FreeNode](https://webchat.freenode.net/#greasemonkey)
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Lizenz anfordern
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-Um sie zu erhalten, senden Sie bitte eine E-Mail an devteam@adguard.com mit den folgenden Informationen:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+Wenn Sie Ihr eigenes Benutzerskript entwickeln und testen möchten, wie es mit AdGuard zusammenwirkt, können Sie eine Lizenz anfordern, indem Sie [das Formular](https://surveys.adguard.com/en/for_developers_request/form.html) ausfüllen.
#### Kompatibilität
@@ -135,7 +127,7 @@ Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%2
#### Nicht unterstützte Eigenschaften
-These properties will be simply ignored by AdGuard.
+Diese Eigenschaften werden von AdGuard einfach ignoriert.
```text
@unwrap
@@ -170,7 +162,7 @@ GM_addStyle
GM_log
```
-[Here](https://wiki.greasespot.net/GM.info) you can find more information about Greasemonkey API.
+[Hier](https://wiki.greasespot.net/GM.info) finden Sie weitere Informationen über die Greasemonkey-API.
#### Beispiel
@@ -211,47 +203,47 @@ GM_log
)}();
```
-## Userstyles
+## Benutzerstile (Userstyles)
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Mit Benutzerstilen kann man das Aussehen beliebter Websites ändern.
-AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
+AdGuard bietet die Möglichkeit, eigene Benutzerstile hochzuladen oder zu erstellen. Da es sich hierbei um eine technisch anspruchsvolle Funktion handelt, benötigen Sie einige Kenntnisse in HTML und CSS.
-:::info Supported apps
+:::info Unterstützte Apps
-Currently, two AdGuard apps allow you to create and manage userstyles: AdGuard for Windows (v7.19 or later) and AdGuard for Mac (v2.16 or later). We also plan to implement this new feature in AdGuard v4.8 for Android in the nearest future.
+Derzeit gibt es zwei AdGuard-Anwendungen, mit denen Sie Benutzerstile erstellen und verwalten können: AdGuard für Windows (v7.19 oder höher) und AdGuard für Mac (v2.16 oder höher). Es ist zudem geplant, diese neue Funktion in AdGuard v4.8 für Android in naher Zukunft zu implementieren.
:::
-This is an experimental feature, so if you encounter any problems while adding or creating a userstyle, please contact our support team at .
+Es handelt sich hierbei um eine experimentelle Funktion. Wenn Sie also beim Hinzufügen oder Erstellen eines Benutzerstils auf Probleme stoßen, wenden Sie sich bitte an unser Support-Team unter .
-### How to set up a userstyle in AdGuard
+### So richten Sie einen Benutzerstil in AdGuard ein
-You can download userstyles from various websites. One of the most popular userstyle websites is [https://userstyles.world/](https://userstyles.world/explore), which we will use as an example for the following instructions on how to set up the userstyle in AdGuard.
+Sie können Benutzerstile von verschiedenen Websites herunterladen. Eine der populärsten Benutzerstil-Webseiten ist [https://userstyles.world/](https://userstyles.world/explore), die hier als Beispiel für die folgende Anleitung zur Einrichtung des Benutzerstils in AdGuard verwendet wird.
-1. Follow the link above and choose the userstyle you like
+1. Folgen Sie dem obigen Link und wählen Sie den gewünschten Benutzerstil
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Klicken Sie auf _Kopieren_ neben der Adresse des Benutzerstils
-3. Open AdGuard settings → _Extensions_
+3. Öffnen Sie die Einstellungen von AdGuard ➜ _Erweiterungen_
-4. Press the [+] button and paste the userstyle link
+4. Drücken Sie auf die Schaltfläche [+] und fügen Sie den Benutzerstil-Link ein
5. Fertig!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+Wenn Sie mit den CSS-Regeln vertraut sind, können Sie auch selbst Benutzerstile erstellen.
:::note
-We don’t support userstyles that contain `@var` or `@advanced` in the metadata. AdGuard also doesn’t support `@preprocessor` without the `default` value.
+Es werden keine Benutzerstile unterstützt, die `@var` oder `@advanced` in den Metadaten enthalten. AdGuard unterstützt auch nicht `@preprocessor` ohne den `default`-Wert.
:::
-1. Open AdGuard settings → _Extensions_
+1. Öffnen Sie die Einstellungen von AdGuard ➜ _Erweiterungen_
-2. Press the [+] button and choose the _Create userstyle_ option. A new window will appear on your screen
+2. Drücken Sie auf die Schaltfläche [+] und wählen Sie die Option _Benutzerstil erstellen_. Es wird ein neues Fenster auf Ihrem Bildschirm angezeigt
-3. To create a userstyle, first write the title with metadata, for example
+3. Um einen Benutzerstil zu erstellen, schreiben Sie zunächst den Titel mit Metadaten, zum Beispiel
```CSS
/* ==UserStyle==
@@ -260,7 +252,7 @@ We don’t support userstyles that contain `@var` or `@advanced` in the metadata
==/UserStyle== */
```
-4. Write the CSS part after the meta data. AdGuard supports website domain names matching (`@-moz-document domain(…), …`). Zum Beispiel:
+4. Schreiben Sie den CSS-Teil nach den Metadaten. AdGuard unterstützt den Abgleich von Website-Domainnamen (`@-moz-document domain(…), …`). Zum Beispiel:
```CSS
body {
@@ -268,7 +260,7 @@ We don’t support userstyles that contain `@var` or `@advanced` in the metadata
}
```
- Or:
+ oder:
```CSS
@-moz-document domain('example.org'),
@@ -278,7 +270,7 @@ We don’t support userstyles that contain `@var` or `@advanced` in the metadata
}
```
-5. Once you’re finished, press _Save and Close_. Your new userstyle has been successfully added to AdGuard
+5. Wenn Sie fertig sind, drücken Sie _Speichern und schließen_. Ihr neuer Benutzerstil wurde erfolgreich zu AdGuard hinzugefügt
### Beispiel
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index dad3db5dd9b..cca8a6a5ed0 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,128 +1,128 @@
---
-title: Stealth Mode
+title: Tracking-Schutz (Privatsphäre)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Viele Websites sammeln Informationen über ihre Besucher, z. B. ihre IP-Adresse, den installierten Browser und das Betriebssystem, die Bildschirmauflösung und sogar die Seite, von der ein Besucher weitergeleitet wurde. Einige Webseiten verwenden Cookies, um Ihren Browser zu kennzeichnen und Ihre persönlichen Einstellungen und Präferenzen zu speichern oder um Sie bei Ihrem nächsten Besuch „wiederzuerkennen”. Der Stealth-Modus schützt Ihre persönlichen Informationen vor solchen daten- und statistiksammelnden Systemen.
-You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
+Sie können die Funktionsweise des Stealth-Modus flexibel anpassen: Sie können z. B. verhindern, dass die Website die Suchanfrage erhält, mit der Sie sie im Internet gefunden haben, Sie können sowohl Cookies von Drittanbietern als auch eigene Cookies der Website automatisch löschen, Sie können die gemeinsame Nutzung der Geolokalisierung durch den Browser deaktivieren, die dazu verwendet werden kann, Ihren Aufenthaltsort zu verfolgen, und Sie können Ihre wahre IP-Adresse verbergen oder sie sogar durch eine beliebige ersetzen.
-Below we will list and describe the main features and options that you can control in the **Stealth Mode** settings. They are split into four groups: **General**, **Tracking methods**, **Browser API**, and **Miscellaneous**.
+Im Folgenden werden die wichtigsten Funktionen und Optionen aufgeführt und beschrieben, die Sie in den Einstellungen des **Stealth-Modus** steuern können. Sie sind in vier Gruppen unterteilt: **Allgemein**, **Tracking-Methoden**, **Browser-API**und **Sonstiges**.
:::note
-Some options may not be available depending on the particular product due to OS or other limitations.
+Einige Optionen sind je nach Produkt aufgrund des Betriebssystems oder anderer Einschränkungen möglicherweise nicht verfügbar.
:::
## Allgemein {#general}
-### Hide your search queries {#searchqueries}
+### Eigene Suchanfragen verbergen {#searchqueries}
-When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
+Wenn Sie von Google, Yahoo oder einer anderen Suchmaschine auf eine Website weitergeleitet werden, blendet diese Option die Suchanfrage aus, mit der Sie die Website gefunden haben.
-### Ask websites not to track you {#donottrack}
+### Websites bitten, Sie nicht zu verfolgen {#donottrack}
-Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
+Sendet die Nachricht [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) und [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) an die Websites, die Sie besuchen.
-### Strip tracking parameters from URLs
+### Entfernen von Tracking-Parametern aus URLs
-If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
+Wenn Sie diese Option aktivieren, entfernt AdGuard Tracking-Parameter wie `utm_*` und `fb_ref` aus den URLs der Seiten.
-### Tracking methods {#tracking-methods}
+### Tracking-Methoden {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Selbstzerstörung von Drittanbieter-Cookies {#3p-cookie}
-Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
+Websites verwenden Cookies, um Ihre Informationen und Präferenzen zu speichern, z. B. die von Ihnen gewählte Sprache, Ihren Standort oder die Liste der Artikel in Ihrem Einkaufswagen. Wenn Sie auf eine Website zurückkehren, sendet Ihr Browser die zu dieser Website gehörenden Cookies zurück, so dass er sich Ihre Daten „merken” kann.
-Third-party cookies are those implemented by a website that is different from the one you are currently browsing. For example, cnn.com may have a Facebook "Like" widget on its homepage. This widget will implement a cookie that may be read later by Facebook. Some advertisers use such cookies to track what other sites you visit where their ads are placed.
+Cookies von Drittanbietern sind solche, die von einer anderen Website als derjenigen, die Sie gerade besuchen, eingesetzt werden. Zum Beispiel kann cnn.com ein Facebook „Gefällt mir”-Widget auf seiner Homepage haben. Dieses Widget setzt ein Cookie, das später von Facebook ausgelesen werden kann. Einige Werbetreibende verwenden solche Cookies, um zu verfolgen, welche anderen Websites Sie besuchen, auf denen ihre Werbung platziert ist.
-Set a time period (in minutes) at the end of which all third-party cookies will be destroyed. Set the timer to 0 to block them completely.
+Legen Sie eine Zeitspanne (in Minuten) fest, nach deren Ablauf alle Cookies von Drittanbietern gelöscht werden sollen. Stellen Sie den Timer auf 0 (Null), um sie vollständig zu sperren.
:::caution
-This setting deletes all third-party cookies, including the information of your logins through social networks or other third-party services. You may have to periodically re-log in to some websites and face other cookie-related issues. To block only tracking cookies, use [*AdGuard Tracking Protection filter*](/general/ad-filtering/filter-policy/#tracking-protection-filter).
+Diese Einstellung löscht alle Cookies von Drittanbietern, einschließlich der Informationen über Ihre Anmeldungen bei sozialen Netzwerken oder anderen Diensten von Drittanbietern. Möglicherweise müssen Sie sich bei einigen Websites regelmäßig neu anmelden und haben andere Probleme mit Cookies. Um ausschließlich Tracking-Cookies zu sperren, verwenden Sie den [*AdGuard Tracking-Schutz-Filter*](/general/ad-filtering/filter-policy/#tracking-protection-filter).
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Selbstzerstörung der Cookies von Erstanbietern {#1p-cookie}
-Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
+Legen Sie eine Zeitspanne (in Minuten) fest, nach deren Ablauf alle Cookies gelöscht werden sollen. Stellen Sie den Timer auf 0 (Null), um sie vollständig zu sperren.
:::caution
-We do not recommend enabling this option as it may severely interfere with the work of certain websites.
+Wir raten davon ab, diese Option zu aktivieren, da sie die Arbeit bestimmter Websites stark beeinträchtigen kann.
:::
-### Disable cache for third-party requests {#3p-cache}
+### Cache für Drittanbieter-Anfragen deaktivieren {#3p-cache}
-When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
+Wenn ein Browser eine Seite aufruft, weist der Server dieser Seite einen ETag zu. Dieser ETag wird vom Browser verwendet, um den Inhalt der Seite zwischenzuspeichern. Bei nachfolgenden Anfragen sendet der Browser den ETag an den entsprechenden Server, so dass der Server die Identität des Besuchers erfährt. Solange die Dateien der Website im Cache gespeichert sind, wird der ETag jedes Mal gesendet, wenn Ihr Browser diese Website aufruft. Wenn auf der Website Inhalte von einem anderen Server eingebettet sind (z. B. ein Bild oder ein iFrame), kann dieser Server Ihre Aktivitäten ohne Ihr Wissen verfolgen.
-### Block third-party Authorization header {#3p-auth}
+### Drittanbieter-Autorisierungsheader sperren {#3p-auth}
-"Authorization" header value is cached by the browser, and then is sent alongside every request to that domain. It means that it can be used for tracking purposes just like cookies.
+Der Wert der Kopfzeile „Autorisierung” wird vom Browser zwischengespeichert und dann mit jeder Anfrage an diese Domain gesendet. Das bedeutet, dass sie genau wie Cookies zur Nachverfolgung verwendet werden können.
-## Browser API {#browser-api}
+## Browser-API {#browser-api}
-### Block WebRTC {#webrtc}
+### WebRTC sperren {#webrtc}
-WebRTC (Web Real-Time Communication) is a technology that allows direct streaming of data between browsers and apps. It can let others know your true IP address, even if you use a proxy or VPN. Enabling this option can disrupt the work of certain browser applications, such as messengers, chats, cinemas, or games.
+WebRTC (Web Real-Time Communication) ist eine Technologie, die das direkte Streaming von Daten zwischen Browsern und Anwendungen ermöglicht. So können andere Ihre wahre IP-Adresse erfahren, selbst wenn Sie einen Proxy oder ein VPN verwenden. Die Aktivierung dieser Option kann die Arbeit bestimmter Browseranwendungen wie Messenger, Chats, Kinos oder Spiele stören.
-### Block Push API {#push}
+### Push-API sperren {#push}
-The Push API enables servers to send messages to web applications regardless of the activity status of your browser. Thus, you may see notifications from various websites even if your browser is hidden in the tray or not launched. Enable this option to block the browser's Push API completely.
+Mit der Push-API können Server unabhängig vom Aktivitätsstatus Ihres Browsers Nachrichten an Webanwendungen senden. So sehen Sie möglicherweise Benachrichtigungen von verschiedenen Websites, selbst wenn Ihr Browser in der Taskleiste ausgeblendet oder nicht gestartet ist. Aktivieren Sie diese Option, um die Push-API des Browsers vollständig zu sperren.
-### Block Location API {#location}
+### Ortungsdienste-API sperren {#location}
-Enabling this option will prevent the browser from sending GPS data that could be used to determine your location, modify your search results, or otherwise influence your web experience.
+Durch die Aktivierung dieser Option wird verhindert, dass der Browser GPS-Daten sendet, die zur Bestimmung Ihres Standorts, zum Ändern Ihrer Suchergebnisse oder zur anderweitigen Beeinflussung Ihres Webangebots verwendet werden könnten.
-### Block Flash {#flash}
+### Flash sperren {#flash}
-The Flash Player plugin has become increasingly vulnerable to such online threats as viruses and hackers; it may also significantly increase website load times. Turning this setting on makes AdGuard block browsers' ability to detect components (such as plugins and ActiveXObject objects) that allow Flash to display content. This effectively means that browsers are unable to support Flash.
+Das Flash Player-Plugin ist zunehmend anfällig für Online-Bedrohungen wie Viren und Hacker; außerdem kann es die Ladezeiten von Websites erheblich beeinträchtigen. Wenn Sie diese Einstellung aktivieren, sperrt AdGuard die Fähigkeit von Browsern, Komponenten (wie Plugins und ActiveXObject-Objekte) zu erkennen, die es Flash ermöglichen, Inhalte anzuzeigen. Dies bedeutet, dass die Browser Flash nicht unterstützen können.
### Java sperren {#java}
-Some websites and web services still use the old technology to support Java plugins. The Java plugin API, which is the basis of Java plugins, has serious security flaws. For security purposes, you can disable such plugins. Nevertheless, even if you decide to use the "Block Java" option, JavaScript will still be enabled.
+Einige Websites und Webdienste verwenden noch die alte Technologie zur Unterstützung von Java-Plugins. Die Java-Plugin-API, die die Grundlage für Java-Plugins bildet, weist gravierende Sicherheitsmängel auf. Aus Sicherheitsgründen sollten Sie solche Plugins deaktivieren. Aber auch wenn Sie die Option „Java sperren” wählen, ist JavaScript weiterhin aktiviert.
## Sonstiges {#miscellaneous}
-### Hide Referer from third parties {#referer}
+### Referer vor Drittanbietern verbergen {#referer}
-Referer is an HTTP header used in browser-to-server requests. It contains the URL of the request source. When you navigate from one page to another, Referer saves the URL of the initial page. The server that hosts the destination web page often has software that parses Referer and extracts various pieces of information from it. Enabling the *Hide Referer from third-parties* option hides the current website from third-party sites by altering the HTTP header.
+Referrer ist ein HTTP-Header, der bei Browser-zu-Server-Anfragen verwendet wird. Sie enthält die URL der Anfragequelle. Wenn Sie von einer Seite zu einer anderen navigieren, speichert der Referer die URL der Ausgangsseite. Der Server, auf dem die Ziel-Webseite gehostet wird, verfügt häufig über Software, die Referer analysiert und verschiedene Informationen daraus extrahiert. Wenn Sie die Option *Referer vor Dritten verbergen* aktivieren, wird die aktuelle Website durch Änderung des HTTP-Headers vor Websites Dritter verborgen.
-You can also set an arbitrary value for Referer by entering it into the *Custom Referer* field. To use default Referer, leave the field blank.
+Sie können auch einen beliebigen Wert für Referer festlegen, indem Sie ihn in das Feld *Eigener Referer* eingeben. Um den Standard-Referer zu verwenden, lassen Sie das Feld leer.
-Note that to be able to filter traffic, AdGuard applications 'intercept' browser-to-server requests. Requests to ad, tracking, and phishing servers may be altered before sending them to the server or blocked completely. Same goes for the *Hide Referer from third parties* option: AdGuard intercepts HTTP(S) requests, in particular to remove or change the Referer header if this option is enabled. However, it happens only after these requests “leave” the browser. This means that if you monitor Referer inside the browser (for example, with the help of Chrome's Developer Tools), you will see the original Referer because the request hasn't reached AdGuard yet. You can use software like [Fiddler](https://www.telerik.com/fiddler) to make sure that Referer gets altered correctly.
+Beachten Sie, dass AdGuard-Anwendungen Browser-zu-Server-Anfragen „abfangen”, um den Datenverkehr filtern zu können. Anfragen an Werbe-, Tracking- und Phishing-Server können verändert werden, bevor sie an den Server gesendet werden, oder ganz gesperrt werden. Gleiches gilt für die Option *Referer vor Dritten verbergen*: AdGuard fängt HTTP(S)-Anfragen ab, insbesondere um den Referer-Header zu entfernen oder zu ändern, wenn diese Option aktiviert ist. Dies geschieht jedoch erst, nachdem diese Anfragen den Browser „verlassen” haben. Das bedeutet, dass Sie, wenn Sie den Referer innerhalb des Browsers überwachen (z. B. mit Hilfe der Developer Tools von Chrome), den ursprünglichen Referer sehen, da die Anfrage AdGuard noch nicht erreicht hat. Sie können Software wie [Fiddler](https://www.telerik.com/fiddler) verwenden, um sicherzustellen, dass der Referer korrekt geändert wird.
-On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
+Andererseits arbeitet die AdGuard Browsererweiterung aufgrund der Natur aller Browsererweiterungen „innerhalb“ des Browsers. Dadurch wird der Referer auf der Stelle geändert, so dass die Entwicklertools den gewünschten Referer für Ihre Anfragen anzeigen.
-### Hide your User-Agent {#useragent}
+### Browserkennung verbergen {#useragent}
-When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
+Wenn Sie eine Website besuchen, sendet Ihr Browser seine Informationen an den Server. Sie sieht aus wie eine Textzeile, die Teil einer HTTP-Anfrage ist und mit „User-Agent:” beginnt. Sie enthält in der Regel den Namen und die Version des Browsers, das Betriebssystem und die Spracheinstellungen. Wir trennen den User-Agent (Browserkennung) von identifizierenden Informationen, so dass Werbetreibende ihn nicht erhalten können.
-You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
+Sie können auch einen beliebigen Wert für die Browserkennung festlegen, indem Sie ihn in das Feld Benutzerdefinierter User Agent eingeben. Um die Standard-Browserkennung zu verwenden, lassen Sie das Feld leer.
-### Hide your IP address {#ip}
+### Eigene IP-Adresse verbergen {#ip}
-Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
+Der Stealth-Modus kann Ihre IP-Adresse nicht verbergen. Wir können sie jedoch verbergen, so dass die von Ihnen besuchten Websites annehmen, dass Sie ein Proxy sind. Manchmal hilft das, und Websites ignorieren Ihre wahre IP-Adresse.
-You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
+Sie können eine beliebige IP-Adresse festlegen, die andere als Ihre wahrnehmen sollen, indem Sie sie einfach in das entsprechende Feld eingeben. Um die Standard-IP-Adresse zu verwenden, lassen Sie das Feld leer.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### X-Client-Data-Header aus HTTP-Anfragen entfernen {#xclientdata}
-It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
+Es verbietet Google Chrome, seine Versions- und Änderungsinformationen bei Anfragen an Google-Domains (einschließlich „Double Click” und „Google Analytics”) zu senden.
-### Protect from DPI {#dpi}
+### Schutz vor DPI (Deep Packet Inspection) {#dpi}
-The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
+Bei der Deep Packet Inspection handelt es sich um ein System zur Tiefenanalyse und Filterung des Datenverkehrs nach Paketinhalt sowie zur Sammlung statistischer Daten. Mit dieser Technologie können Internetanbieter den Datenverkehr kontrollieren und den Zugang zu Inhalten für ihre Kunden beschränken.
-AdGuard can modify outgoing packet data so that the client does not fall under the DPI blocking criteria. This means that by enabling this option, users can get access to the content they want. Not all DPI systems can be bypassed at this time, but we are constantly working to improve this.
+AdGuard kann ausgehende Paketdaten so verändern, dass der Client nicht unter die DPI-Sperrkriterien fällt. Das bedeutet, dass die Nutzer durch die Aktivierung dieser Option Zugang zu den von ihnen gewünschten Inhalten erhalten können. Derzeit können nicht alle DPI-Systeme umgangen werden, aber wir arbeiten ständig daran, dies zu verbessern.
-The "Protect from DPI" feature is already implemented in AdGuard for Windows, AdGuard for Mac, and AdGuard for Android.
+Die Funktion „Schutz vor DPI” ist bereits in AdGuard für Windows, AdGuard für Mac und AdGuard für Android implementiert.
:::caution
-If this feature is enabled in AdGuard for Windows, it may interfere with ESET antivirus. Anti-DPI will prevent ESET from filtering traffic, leaving blacklisted and malicious websites unblocked.
+Wenn diese Funktion in AdGuard für Windows aktiviert ist, kann dies ESET Antivirus beeinträchtigen. Schutz vor DPI verhindert, dass ESET den Datenverkehr filtert, so dass auf der Sperrliste stehende und bösartige Websites nicht gesperrt werden.
:::
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/intro.md b/i18n/de/docusaurus-plugin-content-docs/current/intro.md
index 0e8dba60491..2cceb9f7823 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard ist einer der Marktführer für Werbeblocker-Software mit mehr als 15 Ja
Wir entwickeln und pflegen aber auch kostenlose Browsererweiterungen für alle gängigen Browser:
-- [AdGuard Browsererweiterung](/adguard-browser-extension/features/filters)
+- [AdGuard Browsererweiterung](/adguard-browser-extension/availability)
- [AdGuard für Safari](/adguard-for-safari/features/general)
## Nicht nur Werbeblocker
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 71a3e490296..c160a2519ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Este artículo trata sobre la extensión de navegador AdGuard, que protege solo
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Disponibilidad
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibilidad con la aplicación independiente
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Extensión de navegador AdGuard para Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Resolución de problemas
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparación con aplicaciones independientes
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 3e5ff9a9eb0..6d8648327ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Tenemos una extensión independiente para Safari. Desde el lanzamiento de [Safar
:::
-**No olvides que la funcionalidad de cada extensión está estrictamente limitada por las capacidades del navegador**. Entonces, si deseas obtener una protección completa, considera instalar un programa independiente para tu computadora. Hay [una razón para ello](adguard-browser-extension/comparison-standalone).
+**No olvides que la funcionalidad de cada extensión está estrictamente limitada por las capacidades del navegador**. Entonces, si deseas obtener una protección completa, considera instalar un programa independiente para tu computadora. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index c4b49b790ba..4db35bd56d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Este artículo trata sobre AdGuard para Mac, un bloqueador de anuncios multifunc
:::
-Durante la instalación de AdGuard en macOS High Sierra (o posterior), es posible que veas este mensaje: "Extensión del sistema bloqueada". Este es un nuevo mecanismo de seguridad que apareció en High Sierra y requiere que permitas explícitamente la instalación de una extensión del sistema de terceros. Para completar la instalación de AdGuard, tienes que permitir manualmente la carga de la extensión en *Preferencias del Sistema* → *Seguridad & Privacidad* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Permitir la instalación de extensiones en la configuración](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Haz clic en el botón "Permitir" y luego podrás continuar con la instalación normalmente.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 5cc6509eedc..543253aacbe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Las reglas de usuario y las reglas de la lista de permitidos se incluyen en toda
## AdGuard para Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Cómo gestionar las extensiones de Safari
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/es/docusaurus-plugin-content-docs/current/general/browsing-security.md
index dd7348cfe02..29e3a2eb5fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Cada vez que visitas un sitio web, tu cliente local intercambia información con
AdGuard proporciona la mejor protección posible al inspeccionar tanto las páginas, como todos los objetos cargados en ellas. AdGuard verifica las URL y los nombres de dominio utilizando prefijos hash, no las URL completas, por lo que nuestros servidores no retienen información sobre los sitios web que visitas y tu información personal está completamente segura. Nuestros servidores responden a la consulta de la app con una lista de todas las direcciones posibles que coinciden con el prefijo hash. Cuando se detecta una amenaza potencial basada en coincidencias de hash, el acceso a ese sitio web se bloquea inmediatamente.
-![Advertencia de DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### En las extensiones de navegador
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/es/docusaurus-plugin-content-docs/current/general/extensions.md
index bff7a88f30f..d5714911a16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Este script elimina la función de seguimiento de Google de los enlaces en los r
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### ¿Dónde conseguir más scripts de usuario?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Solicitar licencia
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-Para obtenerlo, envía un correo electrónico a devteam@adguard.com con la siguiente información:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibilidad
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. ¡Listo!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/intro.md b/i18n/es/docusaurus-plugin-content-docs/current/intro.md
index aff4b39da06..657f45ad756 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [Extensión de navegador AdGuard](/adguard-browser-extension/features/filters)
+- [Extensión de navegador AdGuard](/adguard-browser-extension/availability)
- [AdGuard para Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/fa/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/fa/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/intro.md b/i18n/fa/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/fi/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/fi/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/intro.md b/i18n/fi/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index b146276b4aa..fef6c26a1b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Cet article concerne l'extension de navigateur AdGuard, qui protège uniquement
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Disponibilité
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibilité avec l'application autonome
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Extension AdGuard pour Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Résoudre les problèmes
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparaison avec les applications autonomes
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 37144474bc7..744bbf8a003 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Nous avons une extension autonome pour Safari. Depuis la sortie de [Safari 13] (
:::
-**N'oubliez pas que la fonctionnalité de chaque extension est strictement limitée par les capacités du navigateur.** Donc, si vous souhaitez une protection complète, envisagez d'installer un programme autonome sur votre ordinateur. Il existe [une raison pourquoi](adguard-browser-extension/comparison-standalone).
+**N'oubliez pas que la fonctionnalité de chaque extension est strictement limitée par les capacités du navigateur.** Donc, si vous souhaitez une protection complète, envisagez d'installer un programme autonome sur votre ordinateur. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index a6b5142a488..28d7f2a9743 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Cet article parle de AdGuard pour Mac, un bloqueur d'annonces multifonctionnel q
:::
-Pendant l'installation d'AdGuard sur macOS High Sierra (ou versions ultérieures), vous pouvez voir le message : "Extension du système bloquée". C'est un nouveau mécanisme de sécurité apparu dans High Sierra, il nécessite une autorisation explicite de votre part pour installer une extension système tierce. Pour terminer l'installation d'AdGuard, vous devez autoriser manuellement le chargement de l'extension dans *Préférences Système* → *Sécurité & Confidentialité* → *Général*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Autoriser l'installation de l'extension dans les paramètres](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Cliquez sur le bouton "Autoriser", puis vous pourrez procéder à l'installation normalement.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index ef4caa29a1a..cd2922fc74a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Les règles d'utilisation et les règles d'autorisation sont incluses dans chaqu
## AdGuard pour Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Comment gérer les extensions Safari
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/fr/docusaurus-plugin-content-docs/current/general/browsing-security.md
index 0d6bcc33652..f8544824a00 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Chaque fois que vous visitez un site web, votre client local échange des inform
AdGuard offre la meilleure protection possible en inspectant à la fois les pages et tous les objets qui y sont chargés. AdGuard vérifie les URL et les noms de domaine à l'aide de préfixes de hachage, et non des URL complètes, de sorte que nos serveurs ne conservent aucune information sur les sites Web que vous visitez et que vos informations personnelles sont totalement sécurisées. Nos serveurs répondent à la requête de l'application avec une liste de toutes les adresses possibles correspondant au préfixe de hachage. Lorsqu'une menace potentielle est détectée grâce à des correspondances de hachage, l'accès à ce site web est immédiatement bloqué.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### Dans les extensions de navigateur
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/fr/docusaurus-plugin-content-docs/current/general/extensions.md
index 9df1a3c4ee3..2aaee6420c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Ce script supprime la fonctionnalité de suivi de Google des liens dans les rés
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Où trouver d'autres scripts utilisateur ?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Demande de licence
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-Pour l'obtenir, veuillez envoyer un email à devteam@adguard.com avec les informations suivantes :
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibilité
@@ -213,7 +205,7 @@ GM_log
## Styles utilisateur
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. C'est fait !
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/intro.md b/i18n/fr/docusaurus-plugin-content-docs/current/intro.md
index ff77d436a24..10be50be0b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [Extension de navigateur AdGuard](/adguard-browser-extension/features/filters)
+- [Extension de navigateur AdGuard](/adguard-browser-extension/availability)
- [AdGuard pour Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/hr/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/hr/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/intro.md b/i18n/hr/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 9843e0c678b..2b25a11dd53 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Ez a cikk az AdGuard böngészőbővítményről szól, amely csak a böngésző
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 29c30f05595..609f2c8354f 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/hu/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/hu/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/intro.md b/i18n/hu/docusaurus-plugin-content-docs/current/intro.md
index 0b50d7a9224..24b2ded5aec 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ Az AdGuard az egyik vezető a hirdetésblokkoló szoftverpiacon 15 éves tapaszt
De ingyenes böngészőbővítményeket is fejlesztünk és tartunk fenn minden népszerű böngészőhöz:
-- [AdGuard Böngészőkiegészítő](/adguard-browser-extension/features/filters)
+- [AdGuard Böngészőkiegészítő](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Nem csak reklámblokkolás
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index e5ce669b8ee..5b8517d3afe 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Questo articolo riguarda l'Estensione di browser AdGuard, che protegge solo il t
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Disponibilità
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installazione
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibilità con l'app autonoma
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Estensione AdGuard Browser per Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Risoluzione problemi
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparazione con le app autonome
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index b4fa2433ec7..c33ccc89f64 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Per Safari, abbiamo un'estensione indipendente. Dal rilascio di [Safari 13](http
:::
-**Non dimenticare che la funzionalità di ogni estensione è rigorosamente limitata dalle capacità del browser**. Quindi, se desideri ottenere una protezione completa, considera d'installare un programma indipendente per il tuo computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Non dimenticare che la funzionalità di ogni estensione è rigorosamente limitata dalle capacità del browser**. Quindi, se desideri ottenere una protezione completa, considera d'installare un programma indipendente per il tuo computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index bc171833610..72ab0eac553 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Questo articolo riguarda AdGuard per Mac, un blocco annunci multifunzionale che
:::
-Durante l'installazione di AdGuard su macOS High Sierra (o versioni successive), potresti visualizzare il seguente messaggio: "Estensione di sistema bloccata". Questo è un nuovo meccanismo di sicurezza apparso in High Sierra che ti richiede di consentire esplicitamente l'installazione di un'estensione di sistema di terze parti. Per completare l'installazione di AdGuard devi consentire manualmente il caricamento dell'estensione in *Preferenze di Sistema* → *Sicurezza & Privacy* → *Generale*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Consenti l'installazione dell'estensione nelle impostazioni](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Clicca il pulsante "Consenti" e, dopodiché, potrai procedere normalmente all'installazione.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 9974708643b..8da6566746f 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Le regole degli utenti e dell'allowlist sono incluse in ogni estensione.
## AdGuard per Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Come gestire le estensioni di Safari
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index b4272e780f8..e1546a8e09e 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/it/docusaurus-plugin-content-docs/current/general/browsing-security.md
index c04cc414439..193b00f8c40 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Ogni volta che visiti un sito web, il tuo client locale scambia informazioni con
AdGuard fornisce la migliore protezione possibile ispezionando sia le pagine che tutti gli oggetti caricati su di esse. AdGuard controlla URL e nomi di dominio utilizzando prefissi hash, non gli URL completi, quindi i nostri server non conservano informazioni sui siti web che visiti e le tue informazioni personali sono completamente sicure. I nostri server rispondono alla richiesta dell'applicazione con un elenco di tutti i possibili indirizzi che corrispondono al prefisso hash. Quando viene rilevata una potenziale minaccia in base alle corrispondenze hash, l'accesso a quel sito web viene immediatamente bloccato.
-![Avviso DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### Nelle estensioni di browser
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/it/docusaurus-plugin-content-docs/current/general/extensions.md
index af5f2e9fc40..374f3c41a91 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Questo script rimuove la funzionalità di monitoraggio di Google dai collegament
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Dove puoi ottenere altri userscript?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Richiedi la licenza
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-Per ottenerla, sei pregato di inviare un'email a devteam@adguard.com con le seguenti informazioni:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibilità
@@ -213,7 +205,7 @@ GM_log
## Stili utente
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Fatto!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/intro.md b/i18n/it/docusaurus-plugin-content-docs/current/intro.md
index 61aea159086..5060c5dae5c 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [Estensione del Browser di AdGuard](/adguard-browser-extension/features/filters)
+- [Estensione del Browser di AdGuard](/adguard-browser-extension/availability)
- [AdGuard per Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index e32fe7bc70f..b82b6aae9f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ sidebar_position: 1
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## インストール/アンインストール
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## スタンドアロンAdGuardアプリとの互換性
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard ブラウザ拡張機能 MV3対応版
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## 問題解決
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## スタンドアロンAdGuardアプリとの比較
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 8f8993648d3..40a9251dd55 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Safari向けにはスタンドアロンの拡張機能があります。 [Safari
:::
-**各拡張機能は、ブラウザの機能により機能性が非常に限られていることにご注意ください**。そのため、本格的な保護を実現するためには、お使いのコンピュータにスタンドアロンのプログラムをインストールすることを検討してください。 その理由は[こちら](adguard-browser-extension/comparison-standalone)。
+**各拡張機能は、ブラウザの機能により機能性が非常に限られていることにご注意ください**。そのため、本格的な保護を実現するためには、お使いのコンピュータにスタンドアロンのプログラムをインストールすることを検討してください。 There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index c9ba7207118..49dc087074e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ sidebar_position: 3
:::
-macOS High Sierra (またはそれ以降のバージョン) に AdGuard をインストールしているときに、「システム拡張がブロックされました」というメッセージが表示される場合があります。 これは High Sierra で登場した新しいセキュリティメカニズムであり、サードパーティのシステム拡張のインストールを明示的に許可する必要があります。 AdGuard のインストールを完了するには、 *システム環境設定* → *セキュリティ & プライバシー* → *一般* で拡張機能の読み込みを手動で許可する必要があります。
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![設定で拡張機能のインストールを許可する](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-「許可」ボタンをクリックすると、通常通りインストールを進めることができます。
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 1f58b593671..4035c463459 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Safari拡張機能は、Safariウェブブラウザで機能を追加する小
## 「AdGuard for Safari」拡張機能
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Safariの拡張機能を管理する方法
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/ja/docusaurus-plugin-content-docs/current/general/browsing-security.md
index e849cef314f..f21e6d8a907 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ AdGuardは、お客様が訪問されたウェブサイトに関するい情報
AdGuard は、ページとページ上にロードされたすべてのオブジェクトの両方を検査することで、可能な限り最高の保護を提供します。 AdGuardは、完全なURLではなく、ハッシュ接頭辞(プレフィックス)を使用してURLとドメイン名をチェックするため、AdGuardのサーバーはお客様が訪問したウェブサイトに関する情報を保持しないため、お客様の個人情報は完全に安全になります。 AdGuardのサーバーは、ハッシュ接頭辞に一致するすべての可能なアドレスのリストで、アプリのクエリに応答します。 ハッシュマッチに基づいて潜在的な脅威が検出されると、そのウェブサイトへのアクセスが即座にブロックされます。
-![DNS警告](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### AdGuard ブラウザ拡張機能の場合
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/ja/docusaurus-plugin-content-docs/current/general/extensions.md
index 0796b1e1a17..d8f490dd6d7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ These userscripts are not developed by AdGuard, and therefore we can't give a 10
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### さらに多くのユーザースクリプトはどこで入手できますか?
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### AdGuardライセンスをリクエストする
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-ご希望の方は、以下の情報を明記の上、devteam@adguard.com にご連絡ください:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### 互換性
@@ -213,7 +205,7 @@ GM_log
## ユーザースタイル
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. 完了です!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/intro.md b/i18n/ja/docusaurus-plugin-content-docs/current/intro.md
index cc8e606461c..3ad63655d03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard は、15 年以上の経験、さまざまなプラットフォーム向
また、一般的なブラウザ向けの無料ブラウザ拡張機能の開発とメンテナンスも行っております:
-- [AdGuard ブラウザ拡張機能](/adguard-browser-extension/features/filters)
+- [AdGuard ブラウザ拡張機能](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## 広告ブロック以外の機能もたくさんあります
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 87bd779e11e..13e869015a6 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ sidebar_position: 1
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## 호환성
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## 설치 방법
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## 독립형 앱과의 호환성
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Chrome MV3용 AdGuard 브라우저 확장 프로그램
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## 독립 실행형 앱과의 비교
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 89d62a74ae4..06979913852 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Safari용 독립 실행형 확장 프로그램이 있습니다. [Safari 13](http
:::
-**각 확장 프로그램의 기능은 브라우저에 의해 엄격하게 제한된다는 것을 잊지 마세요**. 따라서 본격적인 보호를 받으려면 컴퓨터용 독립 실행형 프로그램을 설치하는 것이 좋습니다. [여기](adguard-browser-extension/comparison-standalone)에서 독립 실행형 프로그램을 설치해야 하는 이유를 확인할 수 있습니다.
+**각 확장 프로그램의 기능은 브라우저에 의해 엄격하게 제한된다는 것을 잊지 마세요**. 따라서 본격적인 보호를 받으려면 컴퓨터용 독립 실행형 프로그램을 설치하는 것이 좋습니다. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index fe73f71617a..e1d26ef0c59 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ sidebar_position: 3
:::
-macOS High Sierra(또는 그 이후 버전)에 AdGuard를 설치하는 동안 다음과 같은 메시지가 표시될 수 있습니다: '시스템 확장 차단됨'. 이것은 High Sierra에 등장한 새로운 보안 메커니즘으로, 타사 시스템 확장 프로그램의 설치를 명시적으로 허용해야 합니다. AdGuard 설치를 완료하려면 *시스템 환경설정* → *개인정보 보호와 보안* → *일반*에서 확장 프로그램 로드를 수동으로 허용해야 합니다.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![설정에서 확장 프로그램 설치 허용](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-'허용' 버튼을 클릭하면 정상적으로 설치를 진행할 수 있습니다.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 3a30b09856a..e8d84f7c97c 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Safari 확장 프로그램은 Safari 웹 브라우저에 기능을 추가하는
## Safari용 AdGuard
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Safari용 확장 프로그램 관리 방법
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index 16cb592afed..bef01d8ab76 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/ko/docusaurus-plugin-content-docs/current/general/browsing-security.md
index 29f1a48b1cf..39ce4e1a7c9 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ sidebar_position: 3
AdGuard는 페이지와 페이지에 로드된 모든 개체를 검사하여 최상의 보호 기능을 제공합니다. AdGuard는 전체 URL이 아닌 해시 접두사를 사용하여 URL과 도메인 이름을 확인하므로, 당사 서버는 사용자가 방문한 웹사이트에 대한 정보를 보유하지 않으며 사용자의 개인 정보는 완전히 안전합니다. AdGuard 서버는 해시 접두사와 일치하는 모든 가능한 주소 목록으로 앱의 쿼리에 응답합니다. 해시 일치를 기반으로 잠재적 위협이 감지되면 해당 웹사이트에 대한 액세스가 즉시 차단됩니다.
-![DNS 경고](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### 확장 프로그램
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/ko/docusaurus-plugin-content-docs/current/general/extensions.md
index b1d4fb148c9..ec11a9f79dd 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ These userscripts are not developed by AdGuard, and therefore we can't give a 10
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### 더 많은 유저스크립트는 어디서 구할 수 있나요?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### 라이선스 요청
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-라이선스 키를 받으려면 다음 정보를 포함하여 devteam@adguard.com으로 이메일을 보내주십시오.
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### 호환성
@@ -213,7 +205,7 @@ GM_log
## 유저스타일
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. 끝!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/intro.md b/i18n/ko/docusaurus-plugin-content-docs/current/intro.md
index ca622623b4d..37096f2ddd0 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard는 15년 이상의 경험, 다양한 플랫폼을 위한 여러 제품,
또한 저희는 모든 인기 브라우저들을 위한 무료 브라우저 확장 프로그램도 개발 및 유지 관리 중입니다.
-- [AdGuard 확장 프로그램](/adguard-browser-extension/features/filters)
+- [AdGuard 확장 프로그램](/adguard-browser-extension/availability)
- [Safari용 AdGuard](/adguard-for-safari/features/general)
## 광고 차단뿐이 아닙니다
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/nl/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/nl/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/intro.md b/i18n/nl/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/no/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/no/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/intro.md b/i18n/no/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/pl/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/pl/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/intro.md b/i18n/pl/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index c1feb246fdd..bd5a8a9d401 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Este artigo é sobre a extensão de navegador AdGuard, que protege apenas o seu
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Disponibilidade
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Instalação
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibilidade com o aplicativo independente
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Extensão de navegador AdGuard para Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Resolvendo problemas
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparação com apps para desktop
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index fd7f1ed7b2f..db7d9c17f1e 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Temos uma extensão independente para Safari. Desde o lançamento do [Safari 13]
:::
-**Não esqueça que a funcionalidade de cada extensão é estritamente limitada pelas capacidades do navegador.** Então, se você deseja uma proteção completa, considere instalar a versão de desktop para seu computador. Existe um [motivo](adguard-browser-extension/comparison-standalone) para isso.
+**Não esqueça que a funcionalidade de cada extensão é estritamente limitada pelas capacidades do navegador.** Então, se você deseja uma proteção completa, considere instalar a versão de desktop para seu computador. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index be80c3b5a7f..b6bdee0fe31 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Este artigo é sobre o AdGuard para Mac, um bloqueador de anúncios multifuncion
:::
-Durante a instalação do AdGuard no macOS High Sierra (ou posterior), você poderá ver esta mensagem: "Extensão do sistema bloqueada". Este é um novo mecanismo de segurança que apareceu no High Sierra e exige que você permita explicitamente a instalação de uma extensão de sistema de terceiros. Para concluir a instalação do AdGuard, é necessário permitir o carregamento da extensão manualmente em *Preferências do sistema* → *Segurança & Privacidade* → *Geral*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Dê permissão para a instalação de extensão nas configurações](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Clique no botão “Permitir” e depois disso você poderá prosseguir com a instalação normalmente.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 60c2e0ff75c..f4c3abd5338 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Regras de usuário e regras de lista de permissões estão incluídas em todas a
## AdGuard para Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Como gerenciar as extensões do Safari
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/browsing-security.md
index 72edbc358c5..07d55da0d11 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/extensions.md
index 1d09d9f24a9..009998e9248 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Este script remove o recurso de rastreamento do Google dos links nos resultados
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Onde obter mais userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Solicitar licença
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-Para obtê-la, envie um email para devteam@adguard.com com as seguintes informações:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibilidade
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Pronto!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md
index 6a67eff5ce8..33c5d4c8481 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [Extensão do AdGuard para navegador](/adguard-browser-extension/features/filters)
+- [Extensão do AdGuard para navegador](/adguard-browser-extension/availability)
- [AdGuard para Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 3b59395a64a..4554da3036f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Este artigo é sobre a extensão do navegador AdGuard, que protege apenas o seu
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index ad13c69c21b..90fd18a48df 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index c905cddb65f..798538dae38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/pt/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/pt/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/intro.md b/i18n/pt/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index dd9297e7019..5c50c0556e1 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Acest articol se referă la extensia de browser AdGuard, care vă protejează do
Iată principalele caracteristici și setări disponibile în Extensia de browser AdGuard.
-[Caracteristici](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
În acest articol, veți învăța despre browserele și platformele suportate unde extensia poate fi instalată.
-[Disponibilitate](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Instalare
Articolul explică cum să instalați Extensia de browser AdGuard pe diferite browsere suportate.
-[Instalare](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
Articolul explică compatibilitatea Extensiei de browser AdGuard cu aplicațiile desktop AdGuard.
-[Compatibilitate cu aplicația standalone](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Extensie de browser AdGuard pentru Chrome MV3
@@ -43,16 +43,16 @@ Acest articol discută despre extensia de browser AdGuard pentru Chrome, care es
Articolul descrie cum Extensia de browser AdGuard gestionează paginile protejate, restricționând blocarea reclamelor pe anumite site-uri web sensibile pentru a asigura funcționalitatea corectă.
-[Pagini protejate de browser](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
Această secțiune include ghiduri care abordează problemele cunoscute și soluțiile posibile.
-[Rezolvarea problemelor](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
Articolul evidențiază diferențele de funcționalitate, acoperire și caracteristici între extensiile AdGuard și aplicațiile desktop.
-[Compararea cu aplicațiile standalone](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 870acb8ed91..390c0a9e2e7 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Avem o extensie independentă pentru Safari. Începând cu versiunea [Safari 13]
:::
-**Nu uitați că funcționalitatea fiecărei extensii este strict limitată la capacitățile browserului.** Deci, dacă doriți să obțineți o protecție completă, luați în considerare instalarea unui program de sine stătător pentru computerul dvs. Există [un motiv pentru care](adguard-browser-extension/comparison-standalone).
+**Nu uitați că funcționalitatea fiecărei extensii este strict limitată la capacitățile browserului.** Deci, dacă doriți să obțineți o protecție completă, luați în considerare instalarea unui program de sine stătător pentru computerul dvs. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index 3c0265aac0e..449cfa9cb81 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Acest articol se referă la AdGuard pentru macOS, un blocant de reclame multifun
:::
-În timpul instalării AdGuard pe macOS High Sierra (sau mai recent), este posibil să vedeți acest mesaj: "Extensie de sistem blocată". Acesta este un nou mecanism de securitate care a apărut în High Sierra, și necesită să permiteți explicit instalarea unei extensii de sistem de la terți. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Permite instalarea extensiilor în setări](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Faceți clic pe butonul "Permite", iar după aceea veți putea continua cu instalarea ca de obicei.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 61ae189644e..1ba9dc34880 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Regulile utilizatorilor și regulile din lista albă sunt incluse în fiecare ex
## AdGuard for Safari
-*AdGuard pentru Safari activează iconița AdGuard lângă bara de căutare. Este util dacă doriți să configurați rapid protecția pentru un site web specific sau să blocați manual reclamele. De asemenea, conține reguli avansate care nu sunt convertite în formatul acceptat de Safari. Acestea includ [reguli CSS](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Selectoare CSS extinse](/general/ad-filtering/create-own-filters#extended-css-selectors), și [scripturi](/general/ad-filtering/create-own-filters#scriptlets), care permit AdGuard să blocheze reclame complexe, cum ar fi cele de pe YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. Este util dacă doriți să configurați rapid protecția pentru un site web specific sau să blocați manual reclamele. De asemenea, conține reguli avansate care nu sunt convertite în formatul acceptat de Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Cum să gestionați extensiile Safari
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index 8edde93fa32..15178ac7162 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ Regulile de filtrare care formează filtrele nu sunt create automat. Ele sunt de
Utilizatorii AdGuard [au acces la un instrument special de raportare web](https://reports.adguard.com/new_issue.html). Datorită plângerilor utilizatorilor, dezvoltatorii filtrelor se pot concentra pe corectarea listelor lor de filtre și nu pe căutarea pe Internet a reclamelor vechi și noi neblocate.
-Filtrele pot face mai mult decât să blocheze reclame. Există filtre care blochează trackerele, widgeturile de rețele sociale și neplăcerile precum anunțurile privind cookie-urile. Utilizatorii diferiți pot alege combinații diferite de filtre pentru a se potrivi preferințelor lor personale. Există site-uri precum [filterlists.com](https://filterlists.com/) care sunt dedicate listelor de filtre și au baze de date enorme.
+Filtrele pot face mai mult decât să blocheze reclame. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Utilizatorii diferiți pot alege combinații diferite de filtre pentru a se potrivi preferințelor lor personale. Există site-uri precum [filterlists.com](https://filterlists.com/) care sunt dedicate listelor de filtre și au baze de date enorme.
Dezvoltăm și întreținem [propria noastră serie de liste de filtre](../adguard-filters) care pot fi folosite cu AdGuard sau alte blocante de reclame.
@@ -62,3 +62,40 @@ Aceste reguli sunt destul de complicate și necesită ca blocantul de reclame s
Există alte tipuri de reguli de filtrare, dar acestea necesită mai multe cunoștințe tehnice avansate pentru a înțelege cum funcționează. Dacă ești interesat, [consultă ghidul nostru cuprinzător despre regulile de filtrare în articolul linkat](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/ro/docusaurus-plugin-content-docs/current/general/browsing-security.md
index fc99dfb4edc..97fdcb10467 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/ro/docusaurus-plugin-content-docs/current/general/extensions.md
index e4677544b4d..79072880712 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Acest script elimină caracteristica de urmărire a Google din linkurile din rez
Codul său sursă este [disponibil pe GitHub](https://github.com/Rob--W/dont-track-me-google). Acest userscript poate fi descărcat de pe [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) și instalat în orice aplicație bazată pe AdGuard CoreLibs.
-#### microShield
+#### tinyShield
-Un userscript pentru persoanele care vizitează site-uri coreene și unele site-uri internaționale. Userscriptul microShield blochează reclamele Ad-Shield și anti-adblock-uri. Codul său sursă original este disponibil la [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) și [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). Acest userscript poate fi instalat în aplicațiile bazate pe AdGuard CoreLibs, Violentmonkey, Tampermonkey și [quoid/userscripts](https://github.com/quoid/userscripts). Aflați mai multe despre microShield și cum să-l instalați pe [GitHub](https://github.com/List-KR/microShield).
+Un userscript pentru persoanele care vizitează site-uri coreene și unele site-uri internaționale. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. Acest userscript poate fi instalat în aplicațiile bazate pe AdGuard CoreLibs, Violentmonkey, Tampermonkey și [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### De unde puteți obține mai multe userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ Dacă vă place ideea de a personaliza browserul dvs. cu userscripts și aveți
#### Solicitați licență
-Dacă dezvoltați propriul script personalizat și doriți să testați cum funcționează cu AdGuard, puteți solicita o cheie de licență beta pentru aplicație.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subiect:** Cerere de licență pentru autorul userscript-ului
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Iată un [link mailto](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibilitate
@@ -213,7 +205,7 @@ GM_log
## Stiluri de utilizator
-Stilurile de utilizator permit utilizatorilor să-și personalizeze experiența online. Indiferent dacă doriți să schimbați aspectul unui site web sau să automatizați sarcini repetitive, stilurile oferă o lume de posibilități.
+Userstyles allow users to change the appearance of popular websites.
AdGuard are opțiunea de a încărca sau crea propriile stiluri de utilizator. Aceasta este o caracteristică avansată, așa că va trebui să aveți cunoștințe despre HTML și CSS.
@@ -231,7 +223,7 @@ Puteți descărca stiluri de utilizator de pe diferite site-uri. Unul dintre cel
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ Puteți descărca stiluri de utilizator de pe diferite site-uri. Unul dintre cel
5. Terminat!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/intro.md b/i18n/ro/docusaurus-plugin-content-docs/current/intro.md
index 7510d448aad..80fcee13555 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard este unul dintre liderii pe piața software-ului de blocare a reclamelor
Dar dezvoltăm și menținem extensii de browser gratuite pentru toate browserele populare:
-- [Extensia de browser AdGuard](/adguard-browser-extension/features/filters)
+- [Extensia de browser AdGuard](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Nu doar blocarea reclamelor
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current.json b/i18n/ru/docusaurus-plugin-content-docs/current.json
index 1a95c72f5ee..90cc8a82069 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current.json
+++ b/i18n/ru/docusaurus-plugin-content-docs/current.json
@@ -4,7 +4,7 @@
"description": "The label for version current"
},
"sidebar.tutorialSidebar.category.General": {
- "message": "Основное",
+ "message": "Основные",
"description": "The label for category General in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Ad filtering": {
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 306ba01b506..ad8bb013cf6 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -5,54 +5,54 @@ sidebar_position: 1
:::info
-Эта статья о Браузерном расширении AdGuard, которое защищает только ваш браузер. To protect your entire device, [download the AdGuard app](https://adguard.com/download.html?auto=true)
+Эта статья о Браузерном расширении AdGuard, которое защищает только ваш браузер. [Скачайте приложение AdGuard](https://adguard.com/download.html?auto=true), чтобы защитить своё устройство
:::
-## Features
+## Функции
-Here are outlined the main features and settings available in the AdGuard Browser Extension.
+Здесь описаны основные функции и настройки, доступные в Браузерном расширении AdGuard.
-[Features](/adguard-browser-extension/features/features.md)
+[Функции](/adguard-browser-extension/features)
## Доступность
-In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
+В этой статье вы узнаете о поддерживаемых браузерах и платформах, на которые можно установить расширение.
-[Availability](/adguard-browser-extension/availability.md)
+[Доступность](/adguard-browser-extension/availability)
## Установка
-The article explains how to install the AdGuard Browser Extension on various supported browsers.
+В статье объясняется, как установить Браузерное расширение AdGuard в различных поддерживаемых браузерах.
-[Installation](/adguard-browser-extension/installation.md)
+[Установка](/adguard-browser-extension/installation)
## Совместимость с основным приложением
-The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
+В статье рассказывается о совместимости Браузерного расширения AdGuard с десктопными приложениями AdGuard.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Совместимость с автономным приложением](/adguard-browser-extension/compatibility)
## Браузерное расширение AdGuard MV3 для Chrome
-This article discusses the AdGuard browser extension for Chrome, which is compatible with the Manifest V3 API, and how it differs from the browser extension based on Manifest V2.
+В этой статье обсуждается расширение AdGuard для браузера Chrome, которое совместимо с API Manifest V3, и то, чем оно отличается от расширения, основанного на Manifest V2.
-[AdGuard Browser Extension for Chrome MV3](/adguard-browser-extension/mv3-version/)
+[Браузерное расширение AdGuard для Chrome MV3](/adguard-browser-extension/mv3-version/)
## Страницы, защищённые браузером
-The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
+В статье описывается, как браузерное расширение AdGuard управляет защищёнными страницами — оно ограничивает блокировку рекламы на сайтах с конфиденциальной информацией для их нормального функционирования.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Защищённые страницы](/adguard-browser-extension/protected-pages)
## Решение проблем
-This section includes guides addressing known issues and possible solutions.
+В этом разделе собраны руководства, в которых рассматриваются известные проблемы и их возможные решения.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Решение проблем](/adguard-browser-extension/solving-problems)
## Сравнение с автономными приложениями
-The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
+Статья подчёркивает различия в функциональности, охвате и функциях между расширениями AdGuard и десктопными приложениями.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Сравнение с отдельными приложениями](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index e74a314ca5f..e54ec45e0f5 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ sidebar_position: 2
:::
-**Не забывайте, что функциональность любого расширения строго ограничена возможностями самого браузера**. Для полноценной защиты на уровне системы используйте отдельную программу для компьютера или мобильного устройства. [И вот почему](adguard-browser-extension/comparison-standalone).
+**Не забывайте, что функциональность любого расширения строго ограничена возможностями самого браузера**. Для полноценной защиты на уровне системы используйте отдельную программу для компьютера или мобильного устройства. [И вот почему](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md
index 34609c1da6f..82ff7b12fa6 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md
@@ -19,8 +19,8 @@ sidebar_position: 7
![Расширение vs. приложение \*border](https://cdn.adtidy.org/content/Kb/ad_blocker/browser_extension/ad_blocker_browser_extension_comparison.png)
-`1` — within browser restrictions and only in the browser where it is installed;
+`1` — в пределах ограничений браузера и только в том браузере, где расширение установлено;
-`2` — the extension is unable to detect requests from other extensions. Если вредоносное или трекинговое расширение отправляет запрос на свой сервер, чтобы показать вам рекламу или отследить вашу активность, браузерное расширение AdGuard не сможет заблокировать этот запрос;
+`2` — расширение не может обнаруживать запросы от других расширений. Если вредоносное или трекинговое расширение отправляет запрос на свой сервер, чтобы показать вам рекламу или отследить вашу активность, браузерное расширение AdGuard не сможет заблокировать этот запрос;
-`3` — not all types of ads and threats can be blocked by browser extensions due to certain browser limitations. Некоторые элементы могут попасть на страницу и замедлить процесс загрузки. Приложение же, в отличие от расширения, блокирует рекламу ещё до того, как она загрузится в браузер. Это экономит трафик и ускоряет загрузку страниц.
+`3` — из-за ограничений браузера расширения могут блокировать не все виды рекламы и угроз. Некоторые элементы могут попасть на страницу и замедлить процесс загрузки. Приложение же, в отличие от расширения, блокирует рекламу ещё до того, как она загрузится в браузер. Это экономит трафик и ускоряет загрузку страниц.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
index 86f66350ac3..2c8c8215a7c 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
@@ -1,5 +1,5 @@
---
-title: Features
+title: Функции
sidebar_position: 1
---
@@ -9,26 +9,26 @@ sidebar_position: 1
:::
-## Main menu
+## Главное меню
-The article explains the main functions on the pop-up, such as enabling or disabling ad blocking, accessing settings, managing filters, and viewing protection statistics.
+В статье рассказывается об основных функциях всплывающего окна: включение или отключение блокировки рекламы, доступ к настройкам, управление фильтрами и просмотр статистики защиты.
-[Main menu](/adguard-browser-extension/features/main-menu.md)
+[Главное меню](/adguard-browser-extension/features/main-menu.md)
## Фильтры
-The article describes how AdGuard Browser Extension allows you to customize ad blocking with different filters and custom user rules.
+В статье описывается, как Браузерное расширение AdGuard позволяет настраивать блокировку рекламы с различными фильтрами и пользовательскими правилами.
-[Filters](/adguard-browser-extension/features/filters.md)
+[Фильтры](/adguard-browser-extension/features/filters.md)
-## Tracking protection (Stealth Mode)
+## Защита от трекинга
-The article explains how this feature enhances privacy by blocking online trackers, hiding user information, and preventing third-party data collection.
+В статье объясняется, как эта функция повышает конфиденциальность, блокируя онлайн-трекеры, скрывая информацию о пользователе и предотвращая сбор данных третьими лицами.
-[Tracking protection (Stealth Mode)](/adguard-browser-extension/features/stealth-mode.md)
+[Защита от трекинга](/adguard-browser-extension/features/stealth-mode.md)
## Другие функции и опции
-The article describes additional features and information, such as update notifications, filtering log, statistics on blocked ads and trackers, links to privacy documents, and the repository.
+В статье описаны дополнительные функции и информация, такие как уведомления об обновлениях, журнал фильтрации, статистика заблокированной рекламы и трекеров, ссылки на документы о конфиденциальности и репозиторий.
-[Other features and options](/adguard-browser-extension/features/other-features.md)
+[Другие функции и опции](/adguard-browser-extension/features/other-features.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md
index 41fe8c577da..fdd5465f89a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md
@@ -1,5 +1,5 @@
---
-title: Main menu
+title: Главное меню
sidebar_position: 1
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
index 5fb030b66a9..b0d63077c71 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
@@ -1,5 +1,5 @@
---
-title: Tracking protection (Stealth Mode)
+title: Защита от трекинга
sidebar_position: 3
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/mv3-version.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/mv3-version.md
index e3086e1a93e..ba8272c34e1 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/mv3-version.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/mv3-version.md
@@ -55,7 +55,7 @@ Manifest V3 делит правила на статические (встрое
**Динамические правила:** установлено строгое ограничение в **5000** правил, включая не более 1000 правил с регулярными выражениями.
-If this limit is exceeded, only **5,000 converted rules** will be applied in the following order: first Allowlist, then User rules, Custom filters, and finally — Quick Fixes filter.
+Если этот лимит превышен, будут применены только **5000 преобразованных правил** в следующем порядке: правила Белого списка, Пользовательские правила, Собственные фильтры и Фильтр быстрых исправлений.
> **Преобразованные правила** — это правила, которые были преобразованы
> в \[формат DNR] с помощью [декларативного конвертера][github-declarative-converter].
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/debug-rules.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/debug-rules.md
index 2daf70e1111..ae68c5bf0eb 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/debug-rules.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/debug-rules.md
@@ -69,7 +69,7 @@ sidebar_position: 2
2. Нажмите _Загрузить распакованное_:
- ![Load unpacked](https://cdn.adtidy.org/content/Kb/ad_blocker/browser_extension/load_unpacked.png)
+ ![Загрузить нераспакованное](https://cdn.adtidy.org/content/Kb/ad_blocker/browser_extension/load_unpacked.png)
3. Выберите каталог расширения и нажмите _Выбрать_:
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md
index d8890db2c14..30e5bf67207 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md
@@ -3,7 +3,7 @@ title: Решение проблем
sidebar_position: 1
---
-Here are some guides you may need to solve problems with the AdGuard Browser Extension.
+Вот несколько руководств, которые могут вам понадобиться для решения проблем с Браузерным расширением AdGuard.
-- [How to export logs from the background page](/adguard-browser-extension/solving-problems/logs.md)
-- [How to debug rules in AdGuard for Chrome MV3](/adguard-browser-extension/solving-problems/debug-rules.md)
+- [Как экспортировать логи с фоновой страницы](/adguard-browser-extension/solving-problems/logs.md)
+- [Как отлаживать правила в AdGuard для Chrome MV3](/adguard-browser-extension/solving-problems/debug-rules.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-content-blocker/adguard-content-blocker.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-content-blocker/adguard-content-blocker.md
index 9baa7689efb..5e53537343e 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-content-blocker/adguard-content-blocker.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-content-blocker/adguard-content-blocker.md
@@ -11,8 +11,8 @@ sidebar_position: 1
## Обзор функций
-[Features overview](/adguard-content-blocker/overview.md)
+[Обзор функций](/adguard-content-blocker/overview.md)
## Установка
-[Installation](/adguard-content-blocker/installation.md)
+[Установка](/adguard-content-blocker/installation.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/adguard-for-android.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/adguard-for-android.md
index 91cea6865d1..22cec4430b5 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/adguard-for-android.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/adguard-for-android.md
@@ -9,20 +9,20 @@ sidebar_position: 1
:::
-## Features
+## Функции
-Here are outlined the main features and settings available in AdGuard for Android.
+Здесь описаны основные функции и настройки, доступные в AdGuard для Android.
-[Features](/adguard-for-android/features/features.md)
+[Функции](/adguard-for-android/features/features.md)
## Установка
-Here, you’ll find the system requirements along with instructions on how to install and uninstall AdGuard for Android.
+Здесь вы найдёте системные требования, а также инструкции по установке и удалению AdGuard для Android.
-[Installation](/adguard-for-android/installation.md)
+[Установка](/adguard-for-android/installation.md)
## Решение проблем
-This section includes various articles addressing known issues and possible solutions.
+Этот раздел включает в себя статьи, посвящённые известным проблемам и возможным решениям.
-[Solving problems](/adguard-for-android/solving-problems/solving-problems.md)
+[Решение проблем](/adguard-for-android/solving-problems/solving-problems.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/assistant.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/assistant.md
index ca97d61991e..09284fcedae 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/assistant.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/assistant.md
@@ -20,13 +20,13 @@ sidebar_position: 5
1. Нажмите _Помощник_.
-![Tap Assistant \*mobile](https://cdn.adtidy.org/blog/new/1qvlhassistant-tap-assistant.jpg)
+![Нажмите «Помощник» \*mobile](https://cdn.adtidy.org/blog/new/1qvlhassistant-tap-assistant.jpg)
### Как пользоваться Помощником
Открыв Помощник, вы увидите две вкладки: **Приложения** и **Сайты**. В каждой есть список недавно использованных приложений и сайтов соответственно.
-![Assistant main \*mobile](https://cdn.adtidy.org/blog/new/i5mljAssistant-main.jpg)
+![Окно Помощника \*mobile](https://cdn.adtidy.org/blog/new/i5mljAssistant-main.jpg)
### Приложения
@@ -58,11 +58,11 @@ sidebar_position: 5
### Сайты
-![Assistant websites tab \*mobile](https://cdn.adtidy.org/blog/new/74y9rAssistant-websites.jpg)
+![Вкладка Сайты \*mobile](https://cdn.adtidy.org/blog/new/74y9rAssistant-websites.jpg)
Выберите сайт (**например, google.com**), и вы увидите несколько вариантов того, что можно сделать.
-![Assistant google.com info \*mobile](https://cdn.adtidy.org/blog/new/tht0tgoogle-com-assistant.jpg)
+![google.com в Помощнике \*mobile](https://cdn.adtidy.org/blog/new/tht0tgoogle-com-assistant.jpg)
#### Добавить в белый список
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/features.md
index 4bc285c06e9..58fde9b2933 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/features.md
@@ -1,5 +1,5 @@
---
-title: Features
+title: Функции
sidebar_position: 1
---
@@ -11,48 +11,48 @@ sidebar_position: 1
## Защита
-Info on modules in the Protection tab: Ad blocking, Tracking protection, Annoyance blocking, DNS protection, Firewall, and Browsing security.
+Статья описывает модули, которые находятся на вкладке _Защита_: _Блокировка рекламы_, _Защита от трекинга_, _Блокировка раздражителей_, _DNS-защита_, _Фаервол_ и _Защита от фишинга_.
-[Protection](/adguard-for-android/features/protection/protection.md)
+[Защита](/adguard-for-android/features/protection/protection.md)
## Управление приложениями
-AdGuard for Android offers app management features that allow you to control how AdGuard filters traffic for individual apps, providing options to block ads and trackers or disable protection for selected apps altogether.
+Статья описывает функции AdGuard для Android для управления приложениями. Они позволяют настроить фильтрацию и маршрутизирование трафика для каждого приложения в отдельности.
-[App management](/adguard-for-android/features/app-management.md)
+[Управление приложениями](/adguard-for-android/features/app-management.md)
## Статистика
-Detailed statistics on blocked ads, trackers, and saved traffic that allows us to monitor the app’s performance and protection efficiency over time.
+В статье рассказывается о функции, которая отображает статистику по заблокированной рекламе, трекерам и сэкономленному трафику и позволяет отслеживать производительность приложения и эффективность защиты с течением времени.
-[Statistics](/adguard-for-android/features/statistics.md)
+[Статистика](/adguard-for-android/features/statistics.md)
## Настройки
-Information about customizing settings so you can adjust ad blocking, privacy, and DNS settings to suit your needs.
+Статья описывает раздел настроек AdGuard: фильтрацию, сеть и расширенные настройки.
-[Settings](/adguard-for-android/features/settings.md)
+[Настройки](/adguard-for-android/features/settings.md)
## Помощник
-Information about a tool that lets you quickly change app or website settings and view statistics without opening the AdGuard interface.
+Статья рассказывает о Помощнике — инструменте, который позволяет быстр изменять настройки приложения или сайта и просматривать статистику без запуска приложения AdGuard.
-[Assistant](/adguard-for-android/features/assistant.md)
+[Помощник](/adguard-for-android/features/assistant.md)
## Разница между бесплатной и платной версией
-Comparison of features between the free and paid versions.
+В статье сравниваются функции, доступные в платной и бесплатной версиях.
-[Free vs. full version](/adguard-for-android/features/free-vs-full.mdx)
+[Разница между бесплатной и платной версией](/adguard-for-android/features/free-vs-full.mdx)
## Интеграция с AdGuard VPN
-Information on how the app integrates with VPN services, allowing you to run both AdGuard and AdGuard VPN at the same time without conflict, ensuring ad blocking and privacy protection along with VPN functionality.
+Здесь мы рассказываем о Режиме интеграции, при котором Блокировщик AdGuard и AdGuard VPN могут работать одновременно несмотря на ограничения системы.
-[Integration with AdGuard VPN](/adguard-for-android/features/integration-with-vpn.md)
+[Интеграция с AdGuard VPN](/adguard-for-android/features/integration-with-vpn.md)
## Устройства с root-доступом
-AdGuard for Android on rooted devices offers advanced features like HTTPS filtering without a certificate installation, automatic ad blocking in apps, and deeper system-wide protection.
+Здесь мы рассказываем о функциях, которые доступны в AdGuard для Android на рутованных устройствах: HTTPS-фильтрация во всех приложениях, режимы _Автоматический прокси_ и _Ручной прокси_.
-[Rooted devices](/adguard-for-android/features/rooted.md)
+[Устройства с root-доступом](/adguard-for-android/features/rooted.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/free-vs-full.mdx b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/free-vs-full.mdx
index ec09e6143b2..8513abd1a31 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/free-vs-full.mdx
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/free-vs-full.mdx
@@ -9,11 +9,11 @@ sidebar_position: 6
:::
-
+
Есть бесплатная и платная версии AdGuard для Android. Платные функции расширяют возможности AdGuard:
-- _Блокировка рекламы в приложениях_ позволяет блокировать рекламу в небраузерных приложениях. Вы можете указать приложения для фильтрации в разделе [*Управление приложениями*] (/adguard-for-android/features/app-management)
+- _Блокировка рекламы в приложениях_ позволяет блокировать рекламу в небраузерных приложениях. Вы можете указать приложения для фильтрации в разделе [_Управление приложениями_](/adguard-for-android/features/app-management)
:::note
@@ -23,7 +23,7 @@ AdGuard блокирует рекламу на YouTube помощью собст
- _Защита от трекинга_ защищает данные, блокируя отслеживающие запросы, онлайн-счётчики, UTM-метки и системы аналитики. [Подробнее о защите от трекинга](/adguard-for-android/features/protection/tracking-protection)
-- _Browsing security_ warns you if you're about to visit a potentially dangerous website. [Подробнее о защите от фишинга](/adguard-for-android/features/protection/browsing-security)
+- _Защита от фишинга_ предупреждает вас, если вы собираетесь посетить потенциально опасный сайт. [Подробнее о защите от фишинга](/adguard-for-android/features/protection/browsing-security)
- _Собственные фильтры и правила_ позволяют добавлять свои правила фильтрации и сторонние фильтры для более точной настройки блокировки рекламы. [Подробнее о фильтрах](/adguard-for-android/features/settings#filters)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/firewall/firewall.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/firewall/firewall.md
index 1af67f823ee..47f3bb3c8ec 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/firewall/firewall.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/firewall/firewall.md
@@ -45,7 +45,7 @@ sidebar_position: 1
### Уведомления
-If enabled, this feature notifies you when an app is attempting to violate an applicable firewall rule, e.g. attempts to access mobile data from which it is blocked. Вы можете включать и выключать уведомления для всех приложений или для каждого приложения отдельно.
+Если эта функция включена, вы будете получать уведомления каждый раз, когда приложение попытается нарушить действующее правило фаервола — например, получить доступ к мобильным данным, если они заблокированы. Вы можете включать и выключать уведомления для всех приложений или для каждого приложения отдельно.
Нажмите на уведомление, чтобы получить доступ к настройкам фаераола приложения, или временно отключите все правила фаервола для этого приложения, нажав соответствующую кнопку в уведомлении. Вы также можете отключить все уведомления Фаервола для приложения, нажав кнопку _Не уведомлять_ в уведомлении для этого приложения.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/protection.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/protection.md
index 56b320efa07..3349f485019 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/protection.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/protection/protection.md
@@ -9,40 +9,40 @@ sidebar_position: 1
:::
-This module contains the following settings:
+Раздел «Защита» содержит следующие настройки, о которых есть подробные статьи в этой Базе знаний:
## Блокировка рекламы
-Information on customizing ad blocking, filtering ads and trackers across apps and browsers, with filters and advanced options for system-wide ad blocking.
+В статье рассказывается о настройках для блокировки рекламы в браузерах и приложениях.
-[Ad blocking](/adguard-for-android/features/protection/ad-blocking.md)
+[Блокировка рекламы](/adguard-for-android/features/protection/ad-blocking.md)
## Защита от трекинга
-Information on how to block third-party trackers in apps and websites to protect your privacy and prevent data collection.
+В статье рассказывается о настройках, которые позволяют блокировать инструменты отслеживания, которые собирают данные о пользователях.
-[Tracking protection](/adguard-for-android/features/protection/tracking-protection.md)
+[Защита от трекинга](/adguard-for-android/features/protection/tracking-protection.md)
## Блокировка раздражителей
-Information on how AdGuard filters block annoyances such as cookie consent pop-ups, banners, and other intrusive elements.
+В статье рассказывается о настройках, которые блокируют раздражающие элементы: например, уведомления о куки, виджеты соцсетей или баннеры, предлагающие скачать мобильные приложения.
-[Annoyance blocking](/adguard-for-android/features/protection/annoyance-blocking.md)
+[Блокировка раздражителей](/adguard-for-android/features/protection/annoyance-blocking.md)
## DNS-защита
-Information on configuring secure DNS servers to help block ads, trackers, and malicious websites while protecting your privacy.
+В статье рассказывается о настройке защищённого DNS-сервера и DNS-фильтров для блокировки рекламы, трекеров и опасных сайтов.
-[DNS protection](/adguard-for-android/features/protection/dns-protection.md)
+[DNS-защита](/adguard-for-android/features/protection/dns-protection.md)
## Фаервол
-The Firewall feature, which allows users to control Internet access for individual apps, block background data, and monitor network activity for enhanced privacy and data management.
+В статье рассказывается о Фаерволе — функции, которая позволяет управлять доступом в интернет для отдельных приложений.
-[Firewall](/adguard-for-android/features/protection/firewall/firewall.md)
+[Фаервол](/adguard-for-android/features/protection/firewall/firewall.md)
## Защита от фишинга
-The Browsing security feature helps block access to malicious and phishing websites, protecting you from online threats.
+В статье рассказывается о Защите от фишинга — функции, которая блокирует доступ к вредоносным и фишинговым сайтам и защищает от онлайн-угроз.
-[Browsing security](/adguard-for-android/features/protection/browsing-security.md)
+[Защита от фишинга](/adguard-for-android/features/protection/browsing-security.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md
index 4ea8bca7f04..6c20200816e 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md
@@ -11,7 +11,7 @@ sidebar_position: 4
Вкладку _Настройки_ можно открыть, нажав на самую правую иконку в нижней части экрана. Этот раздел содержит различные настройки, информацию о приложении, лицензиях и подписках, а также о поддержке.
-## Основное
+## Основные
Этот раздел помогает управлять внешним видом и поведением приложения: вы можете установить цветовую тему и язык, управлять уведомлениями и многое другое. Если вы хотите помочь команде AdGuard развивать приложение, можете включить опцию _Отправлять отчёты о сбоях_ и _Отправлять данные об использовании приложения_.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/statistics.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/statistics.md
index 8b2a1fe3adf..69657397edd 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/statistics.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/features/statistics.md
@@ -25,7 +25,7 @@ _Недавняя активность_, ранее известная как _
### Использование данных
-This section shows the amount of downloaded and uploaded data and saved traffic for the selected data type (mobile data, Wi-Fi, or all). Tap _saved_, _uploaded_, or _downloaded_ to view the graph of data usage over time.
+В этом разделе отображается объём скачанных и отправленных данных и сэкономленного трафика для выбранного типа данных (мобильные, Wi-Fi или все). Нажмите _сэкономлено_, _отправлено_ или _скачано_, чтобы просмотреть график использования данных с течением времени.
### Приложения
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/background-work.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/background-work.md
index e5b13fe96b9..4a281d114fc 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/background-work.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/background-work.md
@@ -35,13 +35,13 @@ sidebar_position: 9
1. Перейдите в **Настройки** → **Приложения** → **Разрешения** → **Автозапуск в фоновом режиме** и разрешите AdGuard работать в фоновом режиме
-1. Return to **Settings** → **Apps** → **Manage apps** → **AdGuard** and uncheck **Pause app activity if unused**
+1. Вернитесь в **Настройки** → **Приложения** → **Управление приложениями** → **AdGuard** и отключите параметр **Приостановить работу в неактивный период**
1. Перейдите в раздел **Экономия заряда батареи** и нажмите **Без ограничений**
Опция 2
-1. Go to **Settings** → **Apps** → **Manage apps** → **AdGuard** and enable **Autostart**
+1. Перейдите в **Настройки** → **Приложения** → **Управление приложениями** → **AdGuard** и включите **Автозапуск**
1. Перейдите в раздел **Экономия заряда батареи** и нажмите **Без ограничений**
@@ -529,7 +529,7 @@ Huawei чрезвычайно изобретательны в оптимизац
Вам также необходимо обозначить AdGuard как Исключенный из функции Энергосбережения:
-**System settings** → **Apps & Notifications** → **Advanced** → **Special app access** → **Power saving feature** → Switch AdGuard to **Excepted**
+** Настройки** → **Приложения и уведомления** → **Расширенная** → **Специальный доступ** → **Функция энергосбережения** → добавьте AdGuard в **Исключения для режима энергосбер.**
## Wiko
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md
index 2ba22a6dffa..8b29091f717 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md
@@ -9,7 +9,7 @@ sidebar_position: 1
:::
-Due to built-in statistics processes, high data and/or battery consumption was often attributed to AdGuard by Android 6 and earlier. Это происходило потому, что AdGuard учитывал весь отфильтрованный трафик из разных приложений. В результате доля AdGuard в общем объёме данных и расходе батареи была завышена, а доля других приложений — занижена.
+Из-за встроенных процессов статистики высокий расход трафика и/или заряда батареи часто приписывался AdGuard в Android 6 и более ранних версиях. Это происходило потому, что AdGuard учитывал весь отфильтрованный трафик из разных приложений. В результате доля AdGuard в общем объёме данных и расходе батареи была завышена, а доля других приложений — занижена.
Однако в Android 7 это было исправлено. Теперь информация во встроенной статистике использования данных Android очень близка к реальности, хотя в данных об использовании батареи есть небольшие расхождения.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/firefox-certificates.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/firefox-certificates.md
index b099ff077bf..052bf191e08 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/firefox-certificates.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/firefox-certificates.md
@@ -1,5 +1,5 @@
---
-title: Ручная установка сертификата безопасности в браузер Firefox
+title: Ручная установка сертификата безопасности в браузере Firefox
sidebar_position: 11
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md
index 4c9ee56b277..900ada52062 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md
@@ -1,5 +1,5 @@
---
-title: Как получить отладочные логи AdGuard
+title: Как собрать отладочные логи AdGuard
sidebar_position: 2
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md
index ecd29de3166..11fe92773e9 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md
@@ -1,5 +1,5 @@
---
-title: Как получить системные логи
+title: Как собрать системные логи
sidebar_position: 4
---
@@ -15,7 +15,7 @@ sidebar_position: 4
:::
-Иногда обычных логов может быть недостаточно, чтобы определить источник проблемы. В таких случаях необходимы системные логи. Below are instructions on how to collect and get it: via Developer options and Logcat.
+Иногда обычных логов может быть недостаточно, чтобы определить источник проблемы. В таких случаях необходимы системные логи. Их можно собрать через настройки разработчика и Logcat, ниже — подробные инструкции.
:::note
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md
index 3fce8c93cad..7b9c6f2874a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md
@@ -1,5 +1,5 @@
---
-title: Гид по Низкоуровневым настройкам
+title: Низкоуровневые настройки
sidebar_position: 6
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/multiple-user-profiles.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/multiple-user-profiles.md
index 8bacda78e35..c76d0138159 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/multiple-user-profiles.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/multiple-user-profiles.md
@@ -15,7 +15,7 @@ sidebar_position: 10
На Android 9 и более поздних версиях, если AdGuard установлен более чем для одного пользовательского профиля на вашем устройстве, вы можете столкнуться с проблемами при удалении приложения. Когда вы удаляете AdGuard из одного пользовательского профиля, приложение по-прежнему будет отображаться в списке приложений, но вы не сможете удалить или переустановить его. Это происходит потому, что AdGuard установлен для другого профиля пользователя на устройстве.
-If you try to reinstall AdGuard after an unsuccessful removal attempt, you will see the error message “You can't install the app on your device”.
+Если вы попытаетесь переустановить AdGuard после неудачной попытки удаления, вы увидите сообщение об ошибке «Вы не можете установить приложение на своё устройство».
Чтобы решить эту проблему, вам нужно удалить приложение для всех пользователей: перейдите в Настройки → Все приложения → AdGuard. Нажмите три точки в правом верхнем углу и выберите *Удалить для всех пользователей*.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/secure-folder.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/secure-folder.md
index 43e1c7e845f..d75a8c0fb4a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/secure-folder.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/secure-folder.md
@@ -9,7 +9,7 @@ sidebar_position: 13
:::
-После установки AdGuard в [*Защищённую папку* на вашем Android-устройстве](https://www.samsung.com/uk/support/mobile-devices/what-is-the-secure-folder-and-how-do-i-use-it/) (это в основном относится к устройствам Samsung), вы можете столкнуться с некоторыми трудностями при установке HTTPS-сертификата. Дело в том, что в *Защищённой папке* есть собственное хранилище для сертификатов. However, if you do everything according to the regular certificate installation instructions ([described here](/adguard-for-android/features/settings#https-filtering)), the certificate will be installed into the main memory and will play no role for your ad blocker in the *Secure folder*. Чтобы справиться с этой проблемой и установить сертификат в хранилище *Защищённой папки*, воспользуйтесь следующей инструкцией:
+После установки AdGuard в [*Защищённую папку* на вашем Android-устройстве](https://www.samsung.com/uk/support/mobile-devices/what-is-the-secure-folder-and-how-do-i-use-it/) (это в основном относится к устройствам Samsung), вы можете столкнуться с некоторыми трудностями при установке HTTPS-сертификата. Дело в том, что в *Защищённой папке* есть собственное хранилище для сертификатов. Поэтому, если вы сделаете всё согласно [стандартной инструкции по установке сертификата](/adguard-for-android/features/settings#https-filtering), он будет установлен в основное хранилище и будет бесполезен для вашего блокировщика рекламы в *Защищённой папке*. Чтобы справиться с этой проблемой и установить сертификат в хранилище *Защищённой папки*, воспользуйтесь следующей инструкцией:
1. После установки приложения и подключения к локальному VPN нажмите **Включить** рядом с надписью *HTTPS-фильтрация отключена*.
1. Нажмите **Далее** → **Далее** → **Сохранить сейчас** → **Сохранить сертификат**.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/solving-problems.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/solving-problems.md
index dc61681947e..56f629f0830 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/solving-problems.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/solving-problems.md
@@ -9,23 +9,23 @@ sidebar_position: 1
:::
-Here are some problems you may encounter and workarounds, guides, and instructions you may need.
+Вот некоторые проблемы, с которыми вы можете столкнуться, а также обходные пути и инструкции, которые вам могут понадобиться.
-- [Battery and traffic consumption issues](/adguard-for-android/solving-problems/battery.md)
-- [How to collect debug logs](/adguard-for-android/solving-problems/log.md)
-- [How to automate AdGuard for Android](/adguard-for-android/solving-problems/tasker.md)
-- [How to get system logs](/adguard-for-android/solving-problems/logcat.md)
-- [How to generate HAR files](/adguard-for-android/solving-problems/har.md)
-- [Low-level settings guide](/adguard-for-android/solving-problems/low-level-settings.md)
-- [How to block ads in the YouTube app](adguard-for-android/solving-problems/youtube-ads.md)
-- [How to set up outbound proxy](/adguard-for-android/solving-problems/outbound-proxy.md)
-- [How to protect AdGuard from being disabled by the system](/adguard-for-android/solving-problems/background-work.md)
-- [Problems caused by multiple user profiles](/adguard-for-android/solving-problems/multiple-user-profiles.md)
-- [Manual installation of the security certificate into the Firefox browser](/adguard-for-android/solving-problems/firefox-certificates.md)
-- [Certificate installation on devices with Android 11+](/adguard-for-android/solving-problems/manual-certificate.md)
-- [Certificate installation in a Secure folder](/adguard-for-android/solving-problems/secure-folder.md)
-- [Moving the CA certificate to the system store on rooted devices](/adguard-for-android/solving-problems/https-certificate-for-rooted.md)
-- [Known compatibility issues with Android apps](/adguard-for-android/solving-problems/compatibility-issues.md)
-- [How to install AdGuard for Android TV](/adguard-for-android/solving-problems/adguard-for-android-tv.md)
-- [How to use Samsung Pay with AdGuard in South Korea](/adguard-for-android/solving-problems/samsungpay-with-adguard-in-south-korea.md)
-- [Problems caused by extending restricted settings](/adguard-for-android/solving-problems/extending-restricted-settings.md)
+- [Проблемы с батареей и потреблением трафика](/adguard-for-android/solving-problems/battery.md)
+- [Как собрать отладочные логи AdGuard](/adguard-for-android/solving-problems/log.md)
+- [Как автоматизировать AdGuard для Android](/adguard-for-android/solving-problems/tasker.md)
+- [Как собрать системные логи](/adguard-for-android/solving-problems/logcat.md)
+- [Как сгенерировать файлы HAR](/adguard-for-android/solving-problems/har.md)
+- [Низкоуровневые настройки](/adguard-for-android/solving-problems/low-level-settings.md)
+- [Как заблокировать рекламу в приложении YouTube](adguard-for-android/solving-problems/youtube-ads.md)
+- [Как настроить исходящий прокси](/adguard-for-android/solving-problems/outbound-proxy.md)
+- [Как защитить AdGuard от отключения системой](/adguard-for-android/solving-problems/background-work.md)
+- [Проблемы, вызванные использованием нескольких профилей пользователей](/adguard-for-android/solving-problems/multiple-user-profiles.md)
+- [Ручная установка сертификата безопасности в браузере Firefox](/adguard-for-android/solving-problems/firefox-certificates.md)
+- [Установка сертификата на устройствах с Android 11+](/adguard-for-android/solving-problems/manual-certificate.md)
+- [Установка сертификата в Защищённую папку](/adguard-for-android/solving-problems/secure-folder.md)
+- [Перемещение сертификата ЦС в системное хранилище на рутованных устройствах](/adguard-for-android/solving-problems/https-certificate-for-rooted.md)
+- [Известные проблемы совместимости с приложениями для Android](/adguard-for-android/solving-problems/compatibility-issues.md)
+- [Как установить AdGuard для Android TV](/adguard-for-android/solving-problems/adguard-for-android-tv.md)
+- [Как использовать Samsung Pay с AdGuard в Южной Корее](/adguard-for-android/solving-problems/samsungpay-with-adguard-in-south-korea.md)
+- [Проблемы, вызванные расширением ограниченных настроек](/adguard-for-android/solving-problems/extending-restricted-settings.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/adguard-for-ios.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/adguard-for-ios.md
index 8c88e726627..f2863c8b01d 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/adguard-for-ios.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/adguard-for-ios.md
@@ -3,32 +3,32 @@ title: AdGuard для iOS
sidebar_position: 1
---
-## Features
+## Функции
-Here are outlined the main features and settings available in AdGuard for iOS.
+Здесь описаны основные функции и настройки, доступные в AdGuard для iOS.
-[Features](/adguard-for-ios/features/features.md)
+[Функции](/adguard-for-ios/features/features.md)
## Установка
-Here, you’ll find the system requirements along with instructions on how to install and uninstall AdGuard for iOS.
+Здесь вы найдёте системные требования, а также инструкции по установке и удалению AdGuard для iOS.
-[Installation](/adguard-for-ios/installation.md)
+[Установка](/adguard-for-ios/installation.md)
## Веб-расширение Safari
-AdGuard for iOS includes a web extension that integrates with Safari to provide efficient ad blocking, privacy protection, and customizable filters directly within the browser.
+AdGuard для iOS включает в себя веб-расширение, которое интегрируется с Safari для эффективной блокировки рекламы, защиты данных и настройки фильтров непосредственно в браузере.
-[Safari Web extension](/adguard-for-ios/web-extension.md)
+[Веб-расширение Safari](/adguard-for-ios/web-extension.md)
## Решение проблем
-This section includes various articles addressing known issues and possible solutions.
+Этот раздел включает в себя статьи, посвящённые известным проблемам и возможным решениям.
-[Solving problems](/adguard-for-ios/solving-problems/solving-problems.md)
+[Решение проблем](/adguard-for-mac/solving-problems/solving-problems.md)
## AdGuard и AdGuard Pro
-Here we explain why there are two AdGuard apps in the App Store and what the difference is between them.
+Здесь мы объясняем, почему в App Store есть два приложения AdGuard и в чём между ними разница.
-[AdGuard and AdGuard Pro](/adguard-for-ios/adguard-and-adguard-pro.md)
+[AdGuard и AdGuard Pro](/adguard-for-ios/adguard-and-adguard-pro.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/advanced-protection.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/advanced-protection.md
index b902f6b736b..7f30310d974 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/advanced-protection.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/advanced-protection.md
@@ -9,7 +9,7 @@ sidebar_position: 3
:::
-In iOS 15, Apple added support for Safari Web Extensions and we added a new _Advanced protection_ module to AdGuard for iOS. It allows AdGuard to apply advanced filtering rules, such as [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets) to deal with even the complex ads, such as YouTube ads.
+В iOS 15 Apple добавила поддержку веб-расширений для Safari, а мы добавили в AdGuard для iOS новый модуль _Расширенная защита_. Она позволяет AdGuard применять расширенные правила фильтрации, такие как [правила CSS](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Расширенные селекторы CSS](/general/ad-filtering/create-own-filters#extended-css-selectors) и [скриптлеты](/general/ad-filtering/create-own-filters#scriptlets), чтобы справляться даже со сложной рекламой, такой как реклама на YouTube.
![Экран расширенной защиты \*mobile\_border](https://cdn.adtidy.org/public/Adguard/kb/iOS/features/protection_screen_15_ru.jpeg)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/features.md
index d70245c1518..e3c2e68a6df 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/features/features.md
@@ -1,5 +1,5 @@
---
-title: Features
+title: Функции
sidebar_position: 1
---
@@ -11,54 +11,54 @@ sidebar_position: 1
## Защита Safari
-Information on how to configure ad blocking and privacy in Safari using content blockers, filters, and user rules.
+В статье рассказывается, как настроить блокировку рекламы и трекеров в Safari с использованием блокировщиков контента, фильтров и пользовательских правил.
-[Safari protection](/adguard-for-ios/features/safari-protection.md)
+[Защита Safari](/adguard-for-ios/features/safari-protection.md)
## DNS-защита
-This section describes how AdGuard for iOS allows you to configure secure DNS servers and block ads, trackers, and malicious content.
+В статье рассказывается, как настроить безопасный DNS-сервер, чтобы блокировать рекламу, трекеры и вредоносный контент во всех браузерах и приложениях.
-[DNS protection](/adguard-for-ios/features/dns-protection/)
+[DNS-защита](/adguard-for-ios/features/dns-protection/)
## Расширенная защита
-This article describes how to use CSS rules, CSS selectors, and scriptlets to deal with complex ads, such as YouTube ads.
+В статье рассказывается о фукнкции, которая позволяет блокировать сложную рекламу с помощью CSS-правил, CSS-селекторов и скриптлетов.
-[Advanced protection](/adguard-for-ios/features/advanced-protection.md)
+[Расширенная защита](/adguard-for-ios/features/advanced-protection.md)
## Активность и статистика
-This article describes the Statistics tab with detailed activity reports that allow you to monitor blocked ads, trackers, and DNS queries.
+В статье описывается вкладка Статистики, на которой можно найти подробные отчёты об активности: все запросы, заблокированные запросы и объём сэкономленного трафика.
-[Activity and statistics](/adguard-for-ios/features/activity.md)
+[Активность и статистика](/adguard-for-ios/features/activity.md)
## Помощник
-A tool that helps you manage filtering in Safari right from the browser without switching back to the app.
+В статье рассказывается о Помощнике AdGuard — инструменте, который помогает управлять фильтрацией прямо из Safari, не возвращаясь в приложение.
-[Assistant](/adguard-for-ios/features/assistant.md)
+[Помощник](/adguard-for-ios/features/assistant.md)
## Низкоуровневые настройки
-Low-level settings allow advanced users to fine-tune app performance, customize ad blocking, and adjust DNS protection for greater control over their privacy and security.
+Низкоуровневые настройки позволяют опытным пользователям более прицельно настраивать производительность приложения, блокировку рекламы и DNS-защиту для большего контроля над конфиденциальностью и безопасностью.
-[Low-level settings](/adguard-for-ios/features/low-level-settings.md)
+[Низкоуровневые настройки](/adguard-for-ios/features/low-level-settings.md)
## Другие функции
-The article describes additional features, including widgets, auto-updates, and statistics reset, as well as how to contact support.
+Статья описывает дополнительные функции, такие как виджеты, автообновление и сброс статистики, а способы связаться с поддержкой.
-[Other features](/adguard-for-ios/features/other-features.md)
+[Другие функции](/adguard-for-ios/features/other-features.md)
## Совместимость с AdGuard VPN
-Information on how the app integrates with VPN services, allowing you to run both AdGuard and AdGuard VPN at the same time without conflict, ensuring ad blocking and privacy protection along with VPN functionality.
+Здесь мы рассказываем о Режиме интеграции, при котором Блокировщик AdGuard и AdGuard VPN могут работать одновременно несмотря на ограничения системы.
-[Compatibility with AdGuard VPN](/adguard-for-ios/features/compatibility-with-adguard-vpn.md)
+[Совместимость с AdGuard VPN](/adguard-for-ios/features/compatibility-with-adguard-vpn.md)
## Разница между бесплатной и платной версией
-Comparison of features between the free and paid versions.
+В статье сравниваются функции, доступные в платной и бесплатной версиях.
-[Free vs. full version](/adguard-for-ios/features/free-vs-full.md)
+[Разница между бесплатной и платной версией](/adguard-for-ios/features/free-vs-full.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/solving-problems/solving-problems.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/solving-problems/solving-problems.md
index 8bf65f262f7..b0cffcbdbc8 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/solving-problems/solving-problems.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/solving-problems/solving-problems.md
@@ -5,14 +5,14 @@ sidebar_position: 1
:::info
-В этой статье рассказывается об AdGuard для iOS — многофункциональном блокировщике рекламы, который защищает ваше устройство на системном уровне. To see how it works firsthand, [download the AdGuard app](https://agrd.io/download-kb-adblock)
+В этой статье рассказывается об AdGuard для iOS — многофункциональном блокировщике рекламы, который защищает ваше устройство на системном уровне. [Скачайте приложение AdGuard](https://agrd.io/download-kb-adblock), чтобы увидеть, как оно работает
:::
-Here are some problems you may encounter and workarounds, guides, and instructions you may need.
+Вот некоторые проблемы, с которыми вы можете столкнуться, а также обходные пути и инструкции, которые вам могут понадобиться.
-- [How to activate premium features](/adguard-for-ios/solving-problems/premium-activation.md)
-- [How to enable system-wide filtering in AdGuard for iOS](/adguard-for-ios/solving-problems/system-wide-filtering.md)
-- [How to avoid compatibility issues with FaceTime](/adguard-for-ios/solving-problems/facetime-compatibility-issues.md)
-- [How to block YouTube ads](/adguard-for-ios/solving-problems/block-youtube-ads.md)
-- [Low-level settings guide](/adguard-for-ios/solving-problems/low-level-settings.md)
+- [Как активировать премиум-функции](/adguard-for-ios/solving-problems/premium-activation.md)
+- [Как включить системную фильтрацию в AdGuard для iOS](/adguard-for-ios/solving-problems/system-wide-filtering.md)
+- [Как избежать проблем совместимости с FaceTime](/adguard-for-ios/solving-problems/facetime-compatibility-issues.md)
+- [Как заблокировать рекламу на YouTube](/adguard-for-ios/solving-problems/block-youtube-ads.md)
+- [Низкоуровневые настройки](/adguard-for-ios/solving-problems/low-level-settings.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/web-extension.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/web-extension.md
index 6a000cc8da4..6f57a2c6085 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/web-extension.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-ios/web-extension.md
@@ -11,7 +11,7 @@ sidebar_position: 3
## Что оно делает
-By default, Safari provides only basic tools for content blockers. These tools don't offer the level of performance found in content blockers on other operating systems (Windows, Mac, Android). For example, AdGuard apps on other platforms can use such powerful anti-ad weapons as [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets). Unfortunately, these utilities are absolutely irreplaceable when dealing with more complex cases, such as pre-roll ads on YouTube.
+По умолчанию Safari предоставляет блокировщикам контента только базовые инструменты. Эти инструменты не позволяют добиться уровня блокировки, который доступен блокировщикам на других операционных системах (Windows, Mac, Android). Например, приложения AdGuard на других платформах могут использовать такие мощные средства борьбы с рекламой, как [CSS-правила](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [расширенные CSS-селекторы](/general/ad-filtering/create-own-filters#extended-css-selectors) и [скриптлеты](/general/ad-filtering/create-own-filters#scriptlets). Эти инструменты совершенно незаменимы при работе со сложной рекламой, например, с рекламой на YouTube.
Веб-расширение AdGuard для Safari дополняет AdGuard, давая ему возможность применять все эти типы правил фильтрации.
@@ -19,7 +19,7 @@ By default, Safari provides only basic tools for content blockers. These tools d
![Меню веб-расширения *mobile_border](https://cdn.adtidy.org/public/Adguard/kb/iOS/webext/ext_adguard_ru.png)
-> On iPads, AdGuard's Safari web extension can be accessed directly by tapping the AdGuard icon in the browser's address bar.
+> На устройствах iPad веб-расширение AdGuard для Safari доступно напрямую — просто нажмите на иконку AdGuard в адресной строке браузера.
Вы увидите следующий список опций:
@@ -57,7 +57,7 @@ By default, Safari provides only basic tools for content blockers. These tools d
### В Safari
-You can also enable the AdGuard extension from the Safari browser. To do it, tap *Extensions* (if you don't see it next to the address bar, tap the `aA` icon).
+Вы также можете включить расширение AdGuard в браузере Safari. Для этого нажмите *Расширения* (если этого раздела нет рядом с адресной строкой, нажмите на иконку `aA`).
![В Safari коснитесь значка aA * mobile_border](https://cdn.adtidy.org/public/Adguard/kb/iOS/webext/safari1_ru.png)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/adguard-for-mac.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/adguard-for-mac.md
index 56681bc182a..1dd3e820be4 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/adguard-for-mac.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/adguard-for-mac.md
@@ -9,20 +9,20 @@ sidebar_position: 1
:::
-## Features
+## Функции
-Here are outlined the main features and settings available in AdGuard for Mac.
+Здесь описаны основные функции и настройки, доступные в AdGuard для Mac.
-[Features](/adguard-for-mac/features/features.md)
+[Функции](/adguard-for-mac/features/features.md)
## Установка
-Here, you’ll find the system requirements along with instructions on how to install and uninstall AdGuard for Mac.
+Здесь вы найдёте системные требования, а также инструкции по установке и удалению AdGuard для Mac.
-[Installation](/adguard-for-mac/installation.md)
+[Установка](/adguard-for-mac/installation.md)
### Решение проблем
-This section includes various articles addressing known issues and possible solutions.
+Этот раздел включает в себя статьи, посвящённые известным проблемам и возможным решениям.
-[Solving problems](/adguard-for-mac/solving-problems/solving-problems.md)
+[Решение проблем](/adguard-for-mac/solving-problems/solving-problems.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/browser-assistant.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/browser-assistant.md
index f45a2fa7cd9..1404120d9d8 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/browser-assistant.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/browser-assistant.md
@@ -11,7 +11,7 @@ sidebar_position: 8
Браузерный помощник AdGuard позволяет управлять защитой AdGuard прямо из браузера.
-![The Assistant window \*mobile](https://cdn.adtidy.org/content/kb/ad_blocker/mac/assistant_window.png)
+![Окно Помощника \*mobile](https://cdn.adtidy.org/content/kb/ad_blocker/mac/assistant_window.png)
## Как это работает
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/dns.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/dns.md
index da56af98bbb..1dc94df38f8 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/dns.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/dns.md
@@ -24,18 +24,18 @@ sidebar_position: 5
### Провайдеры
-В разделе _Провайдеры_ вы можете выбрать DNS-сервер, который будет шифровать DNS-трафик и, если это необходимо, блокировать рекламу и трекеры. Мы рекомендуем AdGuard DNS. For more advanced configuration, you can [set up a private AdGuard DNS server](https://adguard-dns.io/welcome.html) or add a custom one by clicking the `+` icon in the lower left corner.
+В разделе _Провайдеры_ вы можете выбрать DNS-сервер, который будет шифровать DNS-трафик и, если это необходимо, блокировать рекламу и трекеры. Мы рекомендуем AdGuard DNS. Для более продвинутой настройки вы можете использовать [личный сервер AdGuard DNS](https://adguard-dns.io/welcome.html) или добавить любой другой, нажав на иконку `+` в левом нижнем углу.
### Фильтры
-DNS filters apply ad-blocking rules at the DNS level. Such filtering is less precise than regular ad blocking, but it’s particularly useful for blocking an entire domain. To add a DNS filter, click `+`. You can find more DNS filters at [filterlists.com](https://filterlists.com/).
+DNS-фильтры применяют правила блокировки на уровне DNS. Такая фильтрация менее точна, чем обычная блокировка рекламы, но она особенно полезна для блокировки всего домена. Чтобы добавить DNS-фильтр, нажмите `+`. DNS-фильтры можно найти на сайте [filterlists.com](https://filterlists.com/).
### Чёрный список
-Domains from this list will be blocked. To add a domain, click `+`. You can add domain names or DNS filtering rules using a [special syntax](https://adguard-dns.io/kb/general/dns-filtering-syntax/).
+Домены из этого списка будут заблокированы. Чтобы добавить домен, нажмите `+`. Вы можете добавлять доменные имена или правила DNS-фильтрации — для них нужно знать [синтаксис](https://adguard-dns.io/kb/general/dns-filtering-syntax/).
-To export or import a blocklist, open the context menu.
+Чтобы экспортировать или импортировать чёрный список, откройте контекстное меню.
### Белый список
-Домены из этого списка не фильтруются. To add a domain, click `+`. To export or import an allowlist, open the context menu.
+Домены из этого списка не фильтруются. Чтобы добавить домен, нажмите `+`. Чтобы экспортировать или импортировать белый список, откройте контекстное меню.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/extensions.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/extensions.md
index a56c52ea671..06d1788ea1a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/extensions.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/extensions.md
@@ -9,25 +9,25 @@ sidebar_position: 9
:::
-AdGuard allows you to install extensions, or userscripts, to extend the functionality of the browser. AdGuard can work as a cross-browser userscript manager: you don’t have to install the same userscript for each browser.
+AdGuard позволяет устанавливать расширения, или пользовательские скрипты, для расширения функциональности браузера. AdGuard может работать как менеджер пользовательских скриптов для разных браузеров: вам не нужно устанавливать один и тот же пользовательский скрипт для каждого браузера.
-Some userscripts are pre-installed, others can be installed manually.
+Некоторые пользовательские скрипты предустановлены, другие можно установить вручную.
-![Extensions](https://cdn.adtidy.org/content/kb/ad_blocker/mac/extensions.png)
+![Расширения](https://cdn.adtidy.org/content/kb/ad_blocker/mac/extensions.png)
-## AdGuard Assistant (legacy)
+## Помощник AdGuard (устаревшая версия)
-This userscript allows you to manage AdGuard protection directly from your browser. While the [new Assistant](/adguard-for-mac/features/browser-assistant) is a browser extension that can be installed from your browser’s store, the legacy Assistant is a userscript that doesn’t require additional installation. Some features are common to both assistants:
+Этот пользовательский скрипт позволяет управлять защитой AdGuard прямо из браузера. В отличие от [нового Помощника](/adguard-for-mac/features/browser-assistant), который имеет формат расширения и доступен в магазинах браузеров, устаревшая версия Помощника — это пользовательский скрипт, который не нужно отдельно устанавливать. Некоторые функции совпадают у обоих помощников:
-- Enable or disable protection for a specific website
+- Включить или отключить защиту на определённом сайте
- Приостановить защиту на 30 секунд
- Блокировка рекламы вручную
- Сообщить о неправильной блокировке
-However, the new Assistant is more advanced. It also allows you to manage AdGuard protection for all websites, check the website’s certificate, manage HTTPS filtering, and open the filtering log or the app’s settings. Мы рекомендуем использовать предыдущую версию Помощника только в том случае, если новая недоступна.
+Но новый Помощник более продвинутый. Он также позволяет управлять защитой для всех сайтов, проверить сертификат сайта и управлять HTTPS-фильтрацией, а также перейти в журнал фильтрации или в настройки приложения. Мы рекомендуем использовать предыдущую версию Помощника только в том случае, если новая недоступна.
## AdGuard Extra
-This userscript solves the most complex ad blocking issues when regular rules aren’t enough. It also prevents websites from circumventing ad blockers and re-inserting blocked ads. We recommend that you keep it enabled at all times.
+Этот скрипт решает самые сложные проблемы блокировки рекламы, когда обычных правил недостаточно. Он также не позволяет сайтам обходить блокировщики рекламы и повторно вставлять заблокированную рекламу. Мы рекомендуем всегда держать его включённым.
-To install a userscript, click `+`. You can find userscripts at [greasyfork.org](https://greasyfork.org/).
+Чтобы установить пользовательский скрипт, нажмите `+`. Вы можете найти пользовательские скрипты на [greasyfork.org](https://greasyfork.org/).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md
index 0124120294f..89d16dc82e9 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md
@@ -1,5 +1,5 @@
---
-title: Features
+title: Функции
sidebar_position: 1
---
@@ -9,56 +9,56 @@ sidebar_position: 1
:::
-## Main window
+## Главное окно
-From the main window, you can toggle protection, view statistics on blocked ads, trackers, and threats, and access settings, updates, support, and license management.
+В главном окне вы можете включить или отключить защиту, просмотреть статистику по заблокированной рекламе, трекерам и угрозам, а также получить доступ к настройкам, обновлениям, поддержке и управлению лицензиями.
-[Main window](/adguard-for-mac/features/main.md)
+[Главное окно](/adguard-for-mac/features/main.md)
-## Основное
+## Основные
-Here you can configure basic settings such as _Do not block search ads and website self-promoting ads_, _Activate language-specific filters automatically_, _Launch AdGuard at login_, _Hide menu bar icon_, and _Allowlist_.
+Здесь вы можете настроить основные параметры, такие как _Не блокировать поисковую рекламу и саморекламу_, _Автоматически включать подходящие языковые фильтры_, _Запускать AdGuard при старте системы_, _Скрыть иконку меню_ и _Белый список_.
-[General](/adguard-for-mac/features/general.md)
+[Основные](/adguard-for-mac/features/general.md)
## Фильтры
-Here you learn how you can customize your ad blocking by enabling different filter lists, including language-specific filters, third-party filters, and user rules.
+Здесь вы узнаете, как настроить блокировку рекламы с помощью фильтров и пользовательских правил.
-[Filters](/adguard-for-mac/features/filters.md)
+[Фильтры](/adguard-for-mac/features/filters.md)
## DNS
-Here you can find the DNS protection settings: available providers, filters, Blocklist and Allowlist functions.
+Здесь вы можете найти настройки DNS-защиты: доступные провайдеры, фильтры, чёрный и белый спики.
[DNS](/adguard-for-mac/features/dns.md)
## Защита от трекинга
-[Stealth Mode](/adguard-for-mac/features/stealth.md)
+[Защита от трекинга](/adguard-for-mac/features/stealth.md)
-Information on how to set up advanced protection by deleting cookies, UTM tags, online counters, and analytics systems, and not allowing websites to collect your IP address, device and browser parameters, search queries, and personal information.
+В этой статье вы узнаете, как настроить расширенную защиту от трекинга, блокируя куки, UTM-теги, онлайн-счётчики и системы аналитики и не позволяя сайтам собирать информацию о вас.
-## Безопасность \*mobile
+## Безопасность
-It includes settings to protect you from phishing and malware. You can also help AdGuard update its database of known threats by agreeing to send anonymous security-related information.
+Настройки безопасности включают в себя функции для защиты от фишинга и вредоносного ПО. Вы также можете помочь AdGuard пополнять базу данных известных угроз, согласившись отправить анонимную информацию, связанную с безопасностью.
-[Security](/adguard-for-mac/features/security.md)
+[Безопасность](/adguard-for-mac/features/security.md)
## Браузерный помощник
-Information on how to manage AdGuard protection directly from the browser.
+В этой статье рассказывается о Браузерном помощнике — расширении, которое позволяет управлять защитой прямо из браузера.
-[Browser Assistant](/adguard-for-mac/features/browser-assistant.md)
+[Браузерный помощник](/adguard-for-mac/features/browser-assistant.md)
## Расширения
-Here you’ll how to use AdGuard as a userscript manager to extend the functionality of websites. You can add your own scripts as well as manage existing ones.
+Здесь вы узнаете, как использовать AdGuard в качестве менеджера пользовательских скриптов, чтобы расширить функциональность сайтов. Вы можете добавлять собственные скрипты, а также управлять существующими.
-[Extensions](/adguard-for-mac/features/extensions.md)
+[Расширения](/adguard-for-mac/features/extensions.md)
## Сеть
-This article describes additional network-related options and proxy settings where you can specify which proxy server AdGuard should use to update filters, download new versions, and so on.
+Эта статья описывает дополнительные параметры, связанные с сетью, и настройки прокси, где вы можете указать, какой прокси сервер AdGuard должен использовать для обновления фильтров и скачивания новых версий.
-[Network](/adguard-for-mac/features/network.md)
+[Сеть](/adguard-for-mac/features/network.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/filters.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/filters.md
index fd2a9389d68..1ed9e02b380 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/filters.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/filters.md
@@ -11,23 +11,23 @@ sidebar_position: 4
## Фильтры
-![Filters](https://cdn.adtidy.org/content/kb/ad_blocker/mac/filters.png)
+![Фильтры](https://cdn.adtidy.org/content/kb/ad_blocker/mac/filters.png)
-Filter lists are sets of rules written using a [special syntax](/general/ad-filtering/create-own-filters). AdGuard interprets and implements these rules to block ads, trackers, and annoyances. Some filters (for example, AdGuard Base filter, Tracking Protection filter, or EasyList) are pre-installed, others can be installed additionally.
+Фильтры — это наборы правил, написанных с использованием [специального синтаксиса](/general/ad-filtering/create-own-filters). AdGuard интерпретирует и применяет эти правила, чтобы блокировать рекламу, трекеры и раздражители. Некоторые фильтры (например, Базовый фильтр, Фильтр счётчиков и систем аналитики или EasyList) предустановлены, другие можно установить дополнительно.
-We recommend enabling the following filters:
+Мы рекомендуем включить следующие фильтры:
-- Базовый фильтр AdGuard
-- AdGuard Tracking Protection filter and AdGuard URL Tracking filter
-- AdGuard Annoyances filter
-- Filters for your language
+- Базовый фильтр
+- Фильтр счётчиков и систем аналитики и Фильтр отслеживания по URL
+- Фильтр раздражителей
+- Фильтры для вашего языка
-These filters are important for blocking most ads, trackers, and annoying elements. For more advanced ad blocking, you can use custom filters and user rules.
+Эти фильтры важны для блокировки большей части рекламы, трекеров и раздражителей. Для более продвинутой блокировки вы можете использовать собственные фильтры и правила.
-To add a filter, click `+` in the lower left corner of the list. To enable a filter, select its checkbox.
+Чтобы добавить фильтр, нажмите `+` в левом нижнем углу списка. Чтобы включить фильтр, нажмите на его галочку.
## Пользовательские правила
-In AdGuard for Mac, user rules are located in _Filters_. To create a rule, click `+`. To enable a rule, select its checkbox. To export or import rules, open the context menu.
+В AdGuard для Mac пользовательские правила находятся в _Фильтрах_. Чтобы создать правило, нажмите `+`. Чтобы включить правило, нажмите на его галочку. Чтобы экспортировать или импортировать правила, откройте контекстное меню.
-![User rules: context menu](https://cdn.adtidy.org/content/kb/ad_blocker/mac/rules.png)
+![Пользовательские правила: контекстное меню](https://cdn.adtidy.org/content/kb/ad_blocker/mac/rules.png)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/general.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/general.md
index ada411f6547..40a92e17490 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/general.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/general.md
@@ -1,5 +1,5 @@
---
-title: Основное
+title: Основные
sidebar_position: 3
---
@@ -9,32 +9,32 @@ sidebar_position: 3
:::
-## How to open app settings
+## Как открыть настройки приложения
-To configure AdGuard for Mac, click the gear icon in the upper right corner of the main window and select _Preferences_.
+Чтобы настроить AdGuard для Mac, нажмите на иконку в верхнем правом углу основного окна и выберите _Настройки_.
-![Main window \*mobile](https://cdn.adtidy.org/content/kb/ad_blocker/mac/main.png)
+![Главное окно \*mobile](https://cdn.adtidy.org/content/kb/ad_blocker/mac/main.png)
-## Основное
+## Основные
-![General](https://cdn.adtidy.org/content/kb/ad_blocker/mac/general.png)
+![Основные](https://cdn.adtidy.org/content/kb/ad_blocker/mac/general.png)
-### Do not block search ads and website self-promoting ads
+### Не блокировать поисковую рекламу и саморекламу
-This feature prevents AdGuard from blocking [search ads and self-promotions on websites](/general/ad-filtering/search-ads). This can be useful, for example, when you’re shopping online and want to see discounts offered by some websites. Instead of adding these websites to the allowlist, you can exclude self-promotions and search ads from filtering.
+Эта функция не позволяет AdGuard блокировать [рекламу в результатах поиска и саморекламу сайтов](/general/ad-filtering/search-ads). Это может быть полезно, например, если вы хотите увидеть скидки на сайтах интернет-магазинов. Вместо того, чтобы добавлять эти сайты в белый список, вы можете исключить из фильтрации саморекламу и поисковую рекламу.
-### Activate language-specific filters automatically
+### Автоматически включать подходящие языковые фильтры
-Эта функция определяет язык посещаемого вами сайта и автоматически активирует соответствующие фильтры для более точной блокировки рекламы. This is especially helpful if you change languages frequently.
+Эта функция определяет язык посещаемого вами сайта и автоматически активирует соответствующие фильтры для более точной блокировки рекламы. Это особенно полезно, если вы часто меняете языки.
-### Launch AdGuard at login
+### Запускать AdGuard при входе в систему
-This feature automatically launches AdGuard automatically after you restart your computer. Это помогает поддерживать защиту AdGuard включённой без необходимости вручную открывать приложение.
+Эта функция автоматически запускает AdGuard после перезагрузки компьютера. Это помогает поддерживать защиту AdGuard включённой без необходимости вручную открывать приложение.
### Скрыть иконку меню
-This feature hides AdGuard’s icon from the menu bar but keeps AdGuard running in the background. Если вы хотите полностью отключить AdGuard, нажмите _Выйти из AdGuard_ в меню главного окна.
+Эта функция скрывает иконку AdGuard из строки меню. При этом AdGuard продолжает работать в фоновом режиме. Если вы хотите полностью отключить AdGuard, нажмите _Выйти из AdGuard_ в меню главного окна.
### Белый список
-Websites added to this list aren’t filtered. Вы также можете получить доступ к сайтам, включённым в разрешённый список, из _Правил пользователя_.
+Сайты, добавленные в этот список, не фильтруются. Вы также можете получить доступ к сайтам, включённым в разрешённый список, из _Правил пользователя_.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/main.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/main.md
index 681aa85932a..c25a9c72fff 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/main.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/main.md
@@ -1,5 +1,5 @@
---
-title: Main window
+title: Главное окно
sidebar_position: 2
---
@@ -9,6 +9,6 @@ sidebar_position: 2
:::
-The main window of AdGuard for Mac allows you to enable or disable the AdGuard protection. It also gives you a quick overview of the app’s stats: ads, trackers, and threats blocked since you’ve installed AdGuard or since your last stats reset. By clicking the gear icon, you can access settings, check for app and filter updates, contact support, and manage your license.
+Основное окно AdGuard для Mac позволяет включать или отключать защиту AdGuard. На этом окне также находится статистика по рекламе, трекерам и угрозам, заблокированным с момента установки AdGuard или с момента последнего сброса статистики. По клику на иконку шестерёнки вы сможете попасть в настройки, проверить обновления приложения и фильтров, связаться с поддержкой и управлять лицензией.
-![Main window \*mobile](https://cdn.adtidy.org/content/kb/ad_blocker/mac/main.png)
+![Главное окно \*mobile](https://cdn.adtidy.org/content/kb/ad_blocker/mac/main.png)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/network.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/network.md
index f4fae5736f9..28f81752adb 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/network.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/network.md
@@ -9,7 +9,7 @@ sidebar_position: 10
:::
-## Основное
+## Основные
![Сеть](https://cdn.adtidy.org/content/kb/ad_blocker/mac/network.png)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md
index cf116e66fe0..7e1143d5e7f 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md
@@ -9,7 +9,7 @@ sidebar_position: 6
:::
-## Advanced privacy protection
+## Расширенная защита от отслеживания
![Защита от трекинга](https://cdn.adtidy.org/content/kb/ad_blocker/mac/stealth.png)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md
index ca80c731dd5..b272a4f23da 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md
@@ -71,7 +71,7 @@ sidebar_position: 9
#### `network.https.ech.enabled`
-Использует локальный DNS-прокси для поиска конфигураций в списках конфигураций ECH. If found, encrypts Client Hellos.
+Использует локальный DNS-прокси для поиска конфигураций в списках конфигураций ECH. Если они найдены, шифрует Client Hellos.
#### `network.https.enforce.certificate.transparency`
@@ -161,9 +161,9 @@ sidebar_position: 9
#### `dns.proxy.private.relay.sequoia.workaround.enabled`
-Blocks macOS Private Relay domains if the user has a firewall enabled, which in turn disables the *Private Relay* feature.
+Блокирует домены Частного узла iCloud (iCloud Private Relay), если у пользователя включён фаервол. Это отключает функцию Частного узла.
-Enabling this setting is useful in the following scenario: when macOS Private Relay is active, filtering cannot function properly and must be disabled. In macOS versions up to 14, AdGuard could automatically disable Private Relay when Protection was enabled. However, starting with macOS 15, this is no longer possible if a firewall is active. By turning on this setting, you can disable Private Relay even when the firewall is enabled, overcoming the previous limitation.
+Эта настройка полезна, если Частный узел препятствует фильтрации. В версиях macOS до 14 AdGuard мог автоматически отключать Частный узел при включённой защите. Но начиная с macOS 15 это больше невозможно, если у пользователя включён фаервол. Эта настройка помогает исправить проблему.
### Настройки Защиты от трекинга
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md
index 3a33de1bc6b..132614c194f 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md
@@ -63,7 +63,7 @@ AdGuard не будет работать вместе с Cisco AnyConnect, ес
#### VPN-приложения со старым API
-Несмотря на то, что AdGuard отображается в системных настройках как VPN, конфликтов с другими приложениями на основе VPN возникнуть не должно. However, if a VPN-based app downloaded outside the App Store is used, there is a risk that it uses the old VPN API and needs to be excluded from filtering:
+Несмотря на то, что AdGuard отображается в системных настройках как VPN, конфликтов с другими приложениями на основе VPN возникнуть не должно. Но если используется VPN-приложение, загруженное не из App Store, есть риск, что оно использует старый VPN API и должно быть исключено из фильтрации:
1. Откройте меню AdGuard.
1. Выберите *Настройки...*.
@@ -79,9 +79,9 @@ AdGuard не будет работать вместе с Cisco AnyConnect, ес
### Совместимость с Little Snitch 5
-На момент написания статьи режим фильтрации «Сетевое расширение» в AdGuard не совместим с [Little Snitch 5](https://obdev.at/products/littlesnitch/index.html). When both are running, there's a risk to encounter issues with various apps' behavior, even if they aren't filtered by AdGuard. Эта проблема вызвана багом в Big Sur, о котором мы уже проинформировали Apple. Это позволяет надеяться, что в ближайших обновлениях он будет исправлен.
+На момент написания статьи режим фильтрации «Сетевое расширение» в AdGuard не совместим с [Little Snitch 5](https://obdev.at/products/littlesnitch/index.html). Когда они оба запущены, существует риск столкнуться с проблемами в поведении различных приложений, даже если они исключены из фильтрации в AdGuard. Эта проблема вызвана багом в Big Sur, о котором мы уже проинформировали Apple. Это позволяет надеяться, что в ближайших обновлениях он будет исправлен.
-However, disabling connection monitoring in Little Snitch doesn't solve the issue, as this doesn't unload the Little Snitch extension from the system memory. Мы рекомендуем использовать режим фильтрации [**Автоматический прокси**](#automatic-proxy), если вы запускаете AdGuard на одном устройстве с Little Snitch под Big Sur, во всяком случае до тех пор, пока Apple не исправит данную проблему совместимости.
+Однако отключение мониторинга соединений в Little Snitch не решает проблему, поскольку это не выгружает расширение Little Snitch из системной памяти. Мы рекомендуем использовать режим фильтрации [**Автоматический прокси**](#automatic-proxy), если вы запускаете AdGuard на одном устройстве с Little Snitch под Big Sur, во всяком случае до тех пор, пока Apple не исправит данную проблему совместимости.
### Совместимость с локальными прокси
@@ -121,7 +121,7 @@ However, disabling connection monitoring in Little Snitch doesn't solve the issu
:::tip
-More information on how to get started can be found on the [Shadowsocks website](https://shadowsocks.org/guide/what-is-shadowsocks.html).
+Более подробную информацию о том, как начать работу, можно найти [на сайте Shadowsocks](https://shadowsocks.org/guide/what-is-shadowsocks.html).
:::
@@ -135,7 +135,7 @@ More information on how to get started can be found on the [Shadowsocks website]
#### Пример 2: Настройка вышестоящего прокси Surge
-В версиях Big Sur 11.1 и выше не существует известных конфликтов между AdGuard и Surge. Если вы используете более старую версию Big Sur, убедитесь, что в правом нижнем углу отключён **системный прокси**. В противном случае Surge не будет работать вместе с AdGuard. On the other hand, **Enhanced Mode** can be enabled without causing a conflict in any Big Sur version.
+В версиях Big Sur 11.1 и выше не существует известных конфликтов между AdGuard и Surge. Если вы используете более старую версию Big Sur, убедитесь, что в правом нижнем углу отключён **системный прокси**. В противном случае Surge не будет работать вместе с AdGuard. С другой стороны, **Enhanced Mode** можно включать на любой версии системы, он не вызовет конфликтов.
![Настройка upsteam-прокси Surge *border](https://cdn.adtidy.org/content/kb/ad_blocker/mac/outbound-proxy.png)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index a714301c720..a86626686e2 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ sidebar_position: 3
:::
-Во время установки AdGuard на macOS High Sierra (или более поздние версии) вы можете увидеть такое сообщение: «Системное расширение заблокировано». Это новый механизм защиты, появившийся в High Sierra, он требует от вас явно разрешить установку сторонних расширений. Чтобы завершить установку AdGuard, вам нужно вручную разрешить установку расширений: перейдите в *Системные настройки* → *Защита и безопасность* → *Основные*.
+Во время установки AdGuard на macOS High Sierra (или более поздней версии) может появиться сообщение «Системное расширение заблокировано». Это новый механизм безопасности, появившийся в High Sierra. Он требует от вас явно разрешить установку стороннего расширения.
+
+Чтобы завершить установку AdGuard, вам нужно вручную разрешить установку расширений: перейдите в *Системные настройки* → *Защита и безопасность (Конфиденциальность и безопасность)* → *Основные*.
+
+На macOS Sequoia это можно сделать в *Системных настройках* → *Конфиденциальность и безопасность* → *Общие* → *Объекты входа и расширения*. Нажмите на иконку `i` рядом с настройкой *Сетевые расширения* и включите AdGuard.
![Разрешить установку расширений в настройках](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Нажмите кнопку «Разрешить», после этого AdGuard сможет продолжить установку.
+После этого вы сможете продолжить установку как обычно.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md
index c889f3cb708..6661a12664c 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md
@@ -11,7 +11,7 @@ sidebar_position: 7
## Краткое описание проблемы
-По умолчанию AdGuard использует "default route", таким образом отключая iCloud Private Relay.
+По умолчанию AdGuard использует "default route", который отключает Частный узел iCloud (iCloud Private Relay).
Сейчас AdGuard и iCloud Private Relay не могут работать одновременно. AdGuard не может блокировать рекламу, так как iCloud Private Relay шифрует трафик до того, как AdGuard сможет фильтровать сетевые соединения. Использование iCloud Private Relay блокирует любую фильтрацию, включая локальную. Таким образом, AdGuard не может фильтровать трафик или выполнять DNS-фильтрацию в Safari. Но AdGuard по-прежнему фильтрует трафик в других браузерах. Если вы хотите использовать iCloud Private Relay, подумайте об установке [AdGuard для Safari](https://adguard.com/adguard-safari/overview.html).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md
index 5a91fce3407..a4791f29d7a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md
@@ -1,5 +1,5 @@
---
-title: Incompatibility with Screen Time
+title: Несовместимость с Экранным временем
sidebar_position: 11
---
@@ -9,10 +9,10 @@ sidebar_position: 11
:::
-If you have Content Restrictions enabled in _Screen Time_ while AdGuard is on, you may experience problems loading web pages. To check if Content Restrictions are active:
+Если у вас включены ограничения контента в _Экранном времени_, при включённом AdGuard у вас могут возникнуть проблемы с загрузкой страниц. Как проверить, есть ли сейчас ограничения:
-1. Go to System Settings → Screen Time → Content & Privacy → Content Restrictions
+1. Перейдите в Системные настройки → Экранное время → Контент и конфиденциальность → Ограничения контента.
-2. Check if the setting for Access to Web Content is set to _Limit Adult Websites_
+2. Проверьте, есть ли ограничение у настройки «Доступ к веб-контенту», например, «Без сайтов для взрослых».
-If this setting is on, pages won’t load. To continue using AdGuard, disable Content & Privacy in Screen Time, and then restart the system.
+Если да, то страницы не будут загружаться. Чтобы AdGuard работал, отключите настройку «Контент и конфиденциальность» в разделе «Экранное время», а затем перезапустите систему.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/solving-problems.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/solving-problems.md
index cfff63474b3..fb1be53ca50 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/solving-problems.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/solving-problems.md
@@ -9,16 +9,16 @@ sidebar_position: 1
:::
-Here are some problems you may encounter and workarounds, guides, and instructions you may need.
+Вот некоторые проблемы, с которыми вы можете столкнуться, а также обходные пути и инструкции, которые вам могут понадобиться.
-- [Manual certificate installation](/adguard-for-mac/solving-problems/manual-certificate-installation.md)
-- [Protection cannot be enabled](/adguard-for-mac/solving-problems/protection-cannot-be-enabled.md)
-- [How to install AdGuard on macOS High Sierra and above](/adguard-for-mac/solving-problems/high-sierra-compatibility.md)
-- [Compatibility issues with different macOS versions](/adguard-for-mac/solving-problems/big-sur-issues.md)
-- [Installation problems solving](/adguard-for-mac/solving-problems/installation-issues.md)
-- [Launch issues](/adguard-for-mac/solving-problems/launch-issues.md)
-- [iCloud Private Relay and AdGuard](/adguard-for-mac/solving-problems/icloud-private-relay.md)
-- [Protect Mail Activity and AdGuard](/adguard-for-mac/solving-problems/protect-mail-activity.md)
-- [Advanced Settings guide](/adguard-for-mac/solving-problems/advanced-settings.md)
-- [Setting up filtering in Tor Browser](/adguard-for-mac/solving-problems/tor-filtering.md)
-- [Incompatibility with Screen Time](/adguard-for-mac/solving-problems/screen-time-issues.md)
+- [Установка сертификата вручную](/adguard-for-mac/solving-problems/manual-certificate-installation.md)
+- [Не удаётся включить защиту](/adguard-for-mac/solving-problems/protection-cannot-be-enabled.md)
+- [Как установить AdGuard на macOS High Sierra и выше](/adguard-for-mac/solving-problems/high-sierra-compatibility.md)
+- [Проблемы совместимости с различными версиями macOS](/adguard-for-mac/solving-problems/big-sur-issues.md)
+- [Решение проблем с установкой](/adguard-for-mac/solving-problems/installation-issues.md)
+- [Проблемы с запуском](/adguard-for-mac/solving-problems/launch-issues.md)
+- [Частный узел iCloud (iCloud Private Relay) и AdGuard](/adguard-for-mac/solving-problems/icloud-private-relay.md)
+- [Защита конфиденциальности в Почте и AdGuard](/adguard-for-mac/solving-problems/protect-mail-activity.md)
+- [Руководство по расширенным настройкам](/adguard-for-mac/solving-problems/advanced-settings.md)
+- [Настройка фильтрации в браузере Tor](/adguard-for-mac/solving-problems/tor-filtering.md)
+- [Несовместимость с функцией «Экранное время»](/adguard-for-mac/solving-problems/screen-time-issues.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/adguard-for-safari.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/adguard-for-safari.md
index 60b089f0164..762b8ccd169 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/adguard-for-safari.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/adguard-for-safari.md
@@ -9,26 +9,26 @@ sidebar_position: 2
:::
-## Features
+## Функции
-Here are outlined the main features and settings available in AdGuard for Safari.
+Здесь описаны основные функции и настройки, доступные в AdGuard для Safari.
-[Features](/adguard-for-safari/features/features.md)
+[Функции](/adguard-for-safari/features/features.md)
## Установка
-Here, you’ll find the system requirements along with instructions on how to install and uninstall AdGuard for Safari.
+Здесь вы найдёте системные требования, а также инструкции по установке и удалению AdGuard для Safari.
-[Installation](/adguard-for-safari/installation.md)
+[Установка](/adguard-for-safari/installation.md)
## Расширения Safari
-The article provides an overview of extensions in AdGuard for Safari, how they work, installation instructions, and key features of the extensions.
+Здесь вы найдёте информацию о расширениях в AdGuard для Safari: как они работают, чем отличаются и как их установить.
-[Safari extensions](/adguard-for-safari/extensions.md)
+[Расширения Safari](/adguard-for-safari/extensions.md)
## Решение проблем
-This section includes various articles addressing known issues and possible solutions.
+Этот раздел включает в себя статьи, посвящённые известным проблемам и возможным решениям.
-[Solving problems](/adguard-for-safari/solving-problems/solving-problems.md)
+[Решение проблем](/adguard-for-safari/solving-problems/solving-problems.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 261bd85d947..7dbfb35d449 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ sidebar_position: 3
## AdGuard для Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. Это полезно, если вы хотите быстро настроить защиту на конкретном сайте или заблокировать рекламу вручную. Расширение также содержит продвинутые правила, которые не преобразуются в формат, поддерживаемый Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Как управлять расширениями Safari
@@ -57,7 +57,7 @@ sidebar_position: 3
![Настройки Safari *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/safari/adguard-for-safari-settings1.png)
-1. Click *Settings...*
+1. Нажмите *Настройки...*
1. Выберите *Расширения*.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/features.md
index 061ab636c0e..f4ac2755f40 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/features.md
@@ -1,34 +1,34 @@
---
-title: Features
+title: Функции
sidebar_position: 1
---
-## Основное
+## Основные
-The article highlights basic features, including notifications, update intervals, and logging level.
+В статье рассматриваются основные функции, включая уведомления, интервалы обновления и уровень логирования.
-[General](adguard-for-safari/features/general.md)
+[Общие](adguard-for-safari/features/general.md)
## Фильтры
-This article explains how AdGuard for Safari allows you to customize ad blocking by enabling different filters, such as language-specific filters, anti-malware filters, and user rules.
+В этой статье объясняется, как AdGuard для Safari позволяет настраивать блокировку рекламы, включая различные фильтры, такие как языковые фильтры, фильтры защиты от вредоносных программ и пользовательские правила.
-[Filters](/adguard-for-safari/features/filters.md)
+[Фильтры](/adguard-for-safari/features/filters.md)
## Блокировщики контента
-This section explains why AdGuard for Safari consists of six content blockers and how they work.
+В этом разделе объясняется, почему AdGuard для Safari состоит из шести блокировщиков контента и как они работают.
-[Content Blockers](/adguard-for-safari/features/content-blockers/content-blockers.md)
+[Блокировщики контента](/adguard-for-safari/features/content-blockers/content-blockers.md)
## Пользовательские правила
-The article is dedicated to how you can use AdGuard for Safari to create and manage custom filtering rules to personalize your ad blocking experience.
+Статья посвящена тому, как использовать AdGuard для Safari для создания и управления пользовательскими правилами, чтобы персонализировать блокировку рекламы.
-[User rules](/adguard-for-safari/features/rules.md)
+[Пользовательские правила](/adguard-for-safari/features/rules.md)
## О компании
-Here you’ll find useful links to privacy documents, GitHub repository, and version history.
+Здесь вы найдёте полезные ссылки на документы о конфиденциальности, репозиторий GitHub и историю версий.
-[About](/adguard-for-safari/features/about.md)
+[О программе](/adguard-for-safari/features/about.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md
index fcba4eeaf2a..02c751e630d 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md
@@ -1,5 +1,5 @@
---
-title: Основное
+title: Основные
sidebar_position: 1
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md
index 60723a71840..ee7d281939e 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md
@@ -11,7 +11,7 @@ sidebar_position: 2
## Системные требования
-Requires macOS 10.15 (Catalina). The minimum supported version of Safari is 13 or later.
+Требуется macOS 10.15 (Catalina). Минимальная поддерживаемая версия Safari — 13 или более поздняя.
## Как установить AdGuard для Safari {#install}
@@ -36,12 +36,12 @@ AdGuard для Safari — это бесплатная программа. Она
![Отмеченные расширения](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adguard-for-safari-extensions-checked.png)
-1. For AdGuard to work on websites, the *Extensions* setting in Safari must be enabled. Open Safari → *Settings* → *Websites* → *Extensions*. If you want to enable AdGuard on every website, set *For other websites* to *Allow*.
+1. Чтобы AdGuard работал на сайтах, настройка *Расширения* в Safari должна быть включена. Откройте Safari → *Настройки* → *Веб-сайты* → *Расширения*. Если вы хотите, чтобы AdGuard работал на всех сайтах, в опции *Для других веб-сайтов* выберите *Разрешить*.
![Настройка блокировщика контента на Mac в Safari](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/macos_extensions.png)
-After you complete these steps, AdGuard for Safari will start functioning. Теперь вы можете настроить его параметры.
+Готово, AdGuard для Safari заработал. Теперь вы можете настроить его параметры.
## Как удалить AdGuard для Safari {#uninstall}
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/solving-problems.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/solving-problems.md
index ad3347b0c48..fe3068749df 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/solving-problems.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/solving-problems.md
@@ -9,10 +9,10 @@ sidebar_position: 1
:::
-Here are some problems you may encounter and workarounds, as well as guides and instructions you may need.
+Вот некоторые проблемы, с которыми вы можете столкнуться, а также обходные пути и инструкции, которые вам могут понадобиться.
-- [Rule limit issues](/adguard-for-safari/solving-problems/rule-limit.md)
-- [Filtering doesn’t work and ads aren’t blocked](/adguard-for-safari/solving-problems/ads-not-blocked.md)
-- [Filtering doesn’t stop when AdGuard for Safari is disabled](/adguard-for-safari/solving-problems/filters-after-disable.md)
-- [How to collect logs in AdGuard for Safari](/adguard-for-safari/solving-problems/logs.md)
-- [AdGuard for Safari doesn’t work in private tabs on macOS Sonoma](/adguard-for-safari/solving-problems/private-sonoma.md)
+- [Проблемы с лимитом правил](/adguard-for-safari/solving-problems/rule-limit.md)
+- [Фильтрация не работает и реклама не блокируется](/adguard-for-safari/solving-problems/ads-not-blocked.md)
+- [Фильтрация не прекращается, когда AdGuard для Safari отключён](/adguard-for-safari/solving-problems/filters-after-disable.md)
+- [Как собирать логи в AdGuard для Safari](/adguard-for-safari/solving-problems/logs.md)
+- [AdGuard для Safari не работает в приватных вкладках на macOS Sonoma](/adguard-for-safari/solving-problems/private-sonoma.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/adguard-for-windows.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/adguard-for-windows.md
index 4889d4deb2f..85dee696ac2 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/adguard-for-windows.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/adguard-for-windows.md
@@ -9,32 +9,32 @@ sidebar_position: 1
:::
-## Features
+## Функции
-Here are outlined the main features and settings available in AdGuard for Windows.
+Здесь описаны основные функции и настройки, доступные в AdGuard для Windows.
-[Features](/adguard-for-windows/features/features.md)
+[Функции](/adguard-for-windows/features/features.md)
## Установка
-Here, you’ll find the system requirements along with instructions on how to install and uninstall AdGuard for Windows.
+Здесь вы найдёте системные требования, а также инструкции по установке и удалению AdGuard для Windows.
-[Installation](/adguard-for-windows/installation.md)
+[Установка](/adguard-for-windows/installation.md)
## Браузерный помощник
-This article covers a browser extension that complements the desktop program, its installation, and its benefits.
+В этой статье рассказывается о браузерном расширении, которое дополняет десктопные приложения AdGuard, а также о его установке и преимуществах.
-[Browser Assistant](/adguard-for-windows/browser-assistant.md)
+[Браузерный помощник](/adguard-for-windows/browser-assistant.md)
## Решение проблем
-This section includes various articles addressing known issues and possible solutions.
+Этот раздел включает в себя статьи, посвящённые известным проблемам и возможным решениям.
-[Solving problems](/adguard-for-windows/solving-problems/solving-problems.md)
+[Решение проблем](/adguard-for-windows/solving-problems/solving-problems.md)
## Документация для администраторов
-This page provides details about AdGuard’s central management of policies and preferences.
+На этой странице представлена подробная информация о централизованном управлении политиками и настройками приложений AdGuard.
-[Documentation for admins](/adguard-for-windows/admins-documentation.md)
+[Документация для администраторов](/adguard-for-windows/admins-documentation.md)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md
index 281e222b787..6102c5ceba5 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md
@@ -27,7 +27,7 @@ sidebar_position: 3
## Отдельная вкладка в Настройках
-The new Browser Assistant has its own tab in AdGuard for Windows settings, along with Stealth Mode, Browsing security, Parental Control and others. Там вы найдёте ссылку для загрузки расширения для вашего браузера по умолчанию. Кроме того, там можно установить флажок для включения прежней версии Помощника.
+У нового Браузерного помощника есть своя вкладка в настройках AdGuard для Windows, наряду с Защитой от трекинга, Защитой от фишинга, Родительским контролем и другими. Там вы найдёте ссылку для загрузки расширения для вашего браузера по умолчанию. Кроме того, там можно установить флажок для включения прежней версии Помощника.
![Настройки *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/browser-assistant/browser-assistant.png)
@@ -42,4 +42,4 @@ The new Browser Assistant has its own tab in AdGuard for Windows settings, along
Если вы хотите установить Браузерный Помощник для своего браузера по умолчанию, вы можете сделать это прямо из настроек приложения. Однако у вас также есть возможность установить его для других браузеров.
-Браузерный помощник AdGuard доступен для всех популярных браузеров: Chrome, Firefox, Edge, Opera и Яндекс. To install the one you need (or many, it is not prohibited but even encouraged), go to [our website](https://adguard.com/adguard-assistant/overview.html), click the browser icon and then the *Install* button. Вот и всё!
+Браузерный помощник AdGuard доступен для всех популярных браузеров: Chrome, Firefox, Edge, Opera и Яндекс. Чтобы установить Помощник для нужного браузера (или несколько, это не запрещено, а даже приветствуется), перейдите [на наш сайт](https://adguard.com/adguard-assistant/overview.html), нажмите на иконку браузера и выберите *Установить*. Вот и всё!
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md
index 8189d0a767c..da23e840a88 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md
@@ -9,9 +9,9 @@ sidebar_position: 3
:::
-AdGuard can significantly extend website functionality by working as a [userscript manager](/general/extensions.md). AdGuard users can add their own scripts as well as manage existing ones.
+AdGuard может значительно расширить функциональность сайта, работая в качестве [менеджера пользовательских скриптов](/general/extensions.md). Пользователи AdGuard могут добавлять собственные скрипты, а также управлять существующими.
-![Extensions \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/userscripts.png)
+![Расширения \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/userscripts.png)
**Автоматически определять пользовательские скрипты**
@@ -19,7 +19,7 @@ AdGuard can significantly extend website functionality by working as a [userscri
Вместе с AdGuard устанавливаются следующие расширения:
-![Preinstalled userscripts \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/preinstalled-userscripts.png)
+![Пользовательские скрипты \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/preinstalled-userscripts.png)
**Помощник AdGuard**
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/features.md
index 8c0fe0a6190..1387d8ed911 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/features.md
@@ -1,5 +1,5 @@
---
-title: Features
+title: Функции
sidebar_position: 1
---
@@ -11,30 +11,30 @@ sidebar_position: 1
## Главный экран
-This article outlines everything you see when you open the program, including _Settings_, _Support_, _License_, and _About_. You’ll also find statistics on blocked ads and trackers.
+Из главного экрана можно перейти в разделы _Настройки_, _Поддержка_, _Лицензия_ и _О программе_. На главном экране также можно найти статистику по заблокированной рекламе и трекерам.
-[Home screen](/adguard-for-windows/features/home-screen/)
+[Главный экран](/adguard-for-windows/features/home-screen/)
## Настройки
-You can customize the program to suit your needs by blocking only what bothers you, using a trusted DNS server, removing third-party cookies, and more.
+Вы можете настроить программу в соответствии с вашими потребностями. Например, выбрать категории для блокировки, настроить DNS-сервер или блокировать сторонние куки.
-[Settings](/adguard-for-windows/features/settings/)
+[Настройки](/adguard-for-windows/features/settings/)
## Расширения
-Here you’ll how to use AdGuard as a userscript manager to extend the functionality of websites. You can add your own scripts as well as manage existing ones.
+Здесь вы узнаете, как использовать AdGuard в качестве менеджера пользовательских скриптов, чтобы расширить функциональность сайтов. Вы можете добавлять собственные скрипты, а также управлять существующими.
-[Extensions](/adguard-for-windows/features/extensions/)
+[Расширения](/adguard-for-windows/features/extensions/)
## Сеть
-This article describes additional network-related options and proxy settings where you can specify which proxy server AdGuard should use to update filters, download new versions, and so on.
+Эта статья описывает дополнительные параметры, связанные с сетью, и настройки прокси, где вы можете указать, какой прокси сервер AdGuard должен использовать для обновления фильтров и скачивания новых версий.
-[Network](/adguard-for-windows/features/network/)
+[Сеть](/adguard-for-windows/features/network/)
## Другие функции
-Here you can find information on how to reach support, manage your license, view details about the current version and privacy policy, check for updates, and explore options available in the tray menu.
+Здесь вы можете найти информацию о том, как обратиться в поддержку, управлять лицензией, узнать детали текущей версии, открыть юридические документы и проверить обновления. В статье также перечислены все доступные варианты действий по клику на иконку в области уведомлений.
-[Other features](/adguard-for-windows/features/others/)
+[Другие функции](/adguard-for-windows/features/others/)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md
index fc87a34a624..daef6a662d2 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md
@@ -11,6 +11,6 @@ sidebar_position: 1
AdGuard для Windows — это простой в использовании инструмент, блокирующий раздражающие баннеры, всплывающие окна, видеорекламу и трекеры. Но это ещё не всё: он помогает экономить трафик, быстрее загружать веб-страницы, а также защищает компьютер от нежелательных и потенциально вредоносных сайтов. Также AdGuard защищает вас от фишинговых сайтов, а ваших детей — от неприемлемого контента.
-![Main screen \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/home-screen.png)
+![Главное меню \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/home-screen.png)
После запуска AdGuard для Windows вы увидите главный экран приложения. Самая заметная деталь — _кнопка включения и выключения защиты_. Также на этом экране можно отслеживать заблокированную рекламу, статистику трекеров и угроз, узнать текущую версию приложения или обновить его. Кроме того, в правом верхнем углу находятся четыре вкладки: _Настройки_, _Поддержка_, _Лицензия_ и _О программе_. О каждой из них поговорим отдельно.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/network.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/network.md
index d67d4105a96..f0a324a1414 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/network.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/network.md
@@ -9,25 +9,25 @@ sidebar_position: 4
:::
-The _Network_ module is dedicated to network filtering, and here you will find additional network-related options. Two of them are enabled by default: _Enable traffic filtering_ and _Filter HTTPS_. These are important extra precautions to better filter your web space. Большинство сайтов теперь используют HTTPS, то же самое относится и к рекламным сетям. From many websites, like youtube.com, facebook.com, and x.com, it is impossible to remove ads without HTTPS filtering. So keep the _Filter HTTPS_ feature enabled unless you have a strong reason not to.
+Модуль _Сеть_ посвящён сетевой фильтрации, и здесь вы найдёте дополнительные параметры, связанные с сетью. Два из них включены по умолчанию: _Включить фильтрацию трафика_ и _Фильтровать HTTPS_. Это важная дополнительная мера предосторожности для лучшей фильтрации интернет-пространства. Большинство сайтов теперь используют HTTPS, то же самое относится и к рекламным сетям. На многих сайтах, таких как youtube.com, facebook.com и x.com, невозможно заблокировать рекламу без HTTPS-фильтрации. Поэтому оставьте функцию _Фильтровать HTTPS_ включённой, если у вас нет веской причины не делать этого.
-![Network Settings \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/network-settings.png)
+![Настройки сети \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/network-settings.png)
-In this module you can select the checkbox _Use AdGuard as an HTTP proxy_ to use AdGuard as a regular HTTP proxy which will filter all traffic passing through it. You can also enable the _Filter websites with EV certificates_ feature. Extended Validation (EV) SSL Certificates offer a stronger safety guarantee; owners of such websites have to pass a thorough and globally standardized identity verification process defined by EV guidelines. Which is the reason why some users trust websites with such certificates and prefer not to filter them.
+В этом модуле вы можете установить флажок «Использовать AdGuard как HTTP-прокси», чтобы использовать AdGuard в качестве обычного HTTP-прокси, который будет фильтровать весь проходящий через него трафик. Вы также можете включить функцию _Фильтровать сайты с EV-сертификатами_. EV-сертификаты (от англ. Extended Validation — «расширенная валидация») дают более надёжную гарантию; владельцы таких сайтов должны пройти подробный и всемирно стандартизированный процесс проверки личности, определённый руководящими принципами EV. Именно поэтому некоторые пользователи доверяют сайтам с такими сертификатами и предпочитают не фильтровать их.
-At last, there is a section with proxy settings. There you can specify which proxy server AdGuard should use to update filters, get new versions, and so on.
+Наконец, есть раздел с настройками прокси. Там вы можете указать, какой прокси-сервер AdGuard должен использовать для обновления фильтров или получения новых версий.
### AdGuard VPN
-The last section is dedicated to AdGuard VPN — an ideal tool that provides security and anonymity each time you browse the Internet. You can download it by clicking the _Download_ button or go to the AdGuard VPN website by clicking the _Homepage_ button.
+Последний раздел посвящён AdGuard VPN — идеальному инструменту, обеспечивающему безопасность и анонимность каждый раз, когда вы выходите в интернет. Вы можете скачать его, нажав на кнопку _Скачать_, или перейти на сайт AdGuard VPN, нажав на кнопку _Сайт_.
-How does AdGuard VPN work? Without going into technical details, we can say that VPN creates a secure encrypted tunnel between the user's computer or mobile device and a remote VPN server. In this way, data privacy is preserved, as well as the anonymity of the user, because a third-party observer sees the IP address of the VPN server and not the actual user's IP.
+Как работает AdGuard VPN? VPN создаёт безопасный зашифрованный туннель между компьютером или мобильным устройством пользователя и удалённым VPN-сервером. Таким образом, сохраняется конфиденциальность данных и анонимность пользователя, поскольку сторонний наблюдатель видит IP-адрес VPN-сервера, а не фактический IP-адрес пользователя.
-**What AdGuard VPN does:**
+**Что делает AdGuard VPN:**
-- hides your real whereabouts and helps you stay anonymous
-- changes your IP address to protect your data from tracking
-- encrypts your traffic to make it unreadable to third parties
-- lets you configure where to use VPN and where not to (exclusions feature)
+- скрывает ваше реальное местоположение и помогает оставаться анонимными
+- изменяет ваш IP-адрес, чтобы защитить данные от отслеживания
+- шифрует ваш трафик, делая его недоступным для третьих сторон
+- позволяет настроить, где использовать VPN, а где нет (функция исключений)
-To get more information about AdGuard VPN, dive into the [AdGuard VPN Knowledge Base](https://adguard-vpn.com/kb/).
+Чтобы получить больше информации об AdGuard VPN, ознакомьтесь [с Базой знаний AdGuard VPN](https://adguard-vpn.com/kb/).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md
index a17a036b9dc..b8c0697748d 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md
@@ -11,13 +11,13 @@ sidebar_position: 2
Раздел _Настройки_ требует наибольшего внимания. Здесь вы можете настроить приложение в соответствии с вашими требованиями: блокировать определённые элементы или сайты, использовать DNS-сервер доверенного провайдера, удалять сторонние куки и так далее.
-![Settings \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings.png)
+![Настройки \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings.png)
### Основные настройки
Здесь вы можете настроить язык и тему (Тёмная или Светлая), включение AdGuard при запуске системы и бесшумные автоматические обновления, выбрать канал обновления и установить интервал проверки обновлений. Если AdGuard для Windows работает некорректно и поддержка попросила вас [собрать логи](/adguard-for-windows/solving-problems/adguard-logs.md), вам тоже следует перейти в _Настройки_.
-![Advanced Settings \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/advanced-settings.png)
+![Расширенные настройки \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/advanced-settings.png)
В самом низу экрана вы найдёте _Расширенные настройки_. Изменение некоторых из них может потенциально вызвать проблемы с работой AdGuard, нарушить интернет-соединение или поставить под угрозу вашу безопасность и конфиденциальность. Заходите в этот раздел, только если вы уверены в своих действиях, или наша служба поддержки попросила вас об этом. [В отдельной статье](/adguard-for-windows/solving-problems/low-level-settings.md) рассказали, что находится в _Расширенных настройках_.
@@ -25,7 +25,7 @@ sidebar_position: 2
Это основной модуль AdGuard для Windows, блокирующий рекламу на сайтах, которые вы посещаете, и в приложениях, установленных на вашем устройстве. Для фильтрации рекламы и контента, угрожающего конфиденциальности, такого как баннеры, всплывающие окна или трекеры, AdGuard использует разные фильтры — группы правил с похожим назначением, написанные с использованием [специального синтаксиса](/general/ad-filtering/create-own-filters). [Что такое фильтры и как они работают](/general/ad-filtering/how-ad-blocking-works)
-![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png)
+![Блокировка рекламы \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png)
В модуле Блокировщик рекламы вы можете:
@@ -44,7 +44,7 @@ sidebar_position: 2
Многие сайты собирают данные о посетителях: IP-адреса, информацию о браузере и операционной системе, разрешении экрана и даже странице, с которой пользователь перешёл на сайт. Чтобы сохранить индивидуальные настройки, личные предпочтения или «узнать» посетителя при повторном визите, некоторые сайты помечают браузер специальными файлами cookie. Антитрекинг призван защитить вашу личную информацию от подобных систем, собирающих данные и статистику.
-![Stealth Mode \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/stealth-mode.png)
+![Защита от трекинга \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/stealth-mode.png)
Работа этого модуля гибко настраивается: например, вы можете запретить сайту узнавать, что вы искали в поисковой системе, прежде чем попасть на этот сайт. Вы также можете автоматически удалять cookie, как принадлежащие сайту, так и сторонние, и отключить определение местоположения в браузере — оно может использоваться для отслеживания ваших перемещений.
@@ -60,7 +60,7 @@ sidebar_position: 2
- активировать звуковые уведомления,
- согласиться отправлять анонимную информацию, связанную с безопасностью, на сервер AdGuard, чтобы помочь нам поддерживать базу вредоносных и фишинговых сайтов в актуальном состоянии.
-![Browsing security \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/browsing-security.png)
+![Защита от фишинга \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/browsing-security.png)
[Больше о Защите от фишинга](/general/browsing-security)
@@ -68,7 +68,7 @@ sidebar_position: 2
Есть три важные причины, по которым вам может понадобиться изучить настройки DNS-защиты. Во-первых, чтобы вас не отслеживал интернет-провайдер. Каждый раз, когда вы открываете сайт, например, `google.com`, ваш браузер отправляет запрос на DNS-сервер, чтобы получить взамен IP-адрес сайта. Обычно DNS-сервер принадлежит вашему интернет-провайдеру, что позволяет ему отслеживать ваши действия в интернете. Во-вторых, для шифрования вашего DNS-трафика. И в-третьих — чтобы [блокировать контент на уровне DNS](https://adguard-dns.io/kb/general/dns-filtering/).
-![DNS Protection \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/dns-settings.png)
+![DNS-защита \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/dns-settings.png)
В _DNS-защите_ вы можете выбрать DNS-серверы от известных DNS-провайдеров, в том числе [AdGuard DNS](https://adguard-dns.io/kb/), который блокирует рекламу и трекеры, AdGuard DNS Семейный, который дополнительно блокирует контент для взрослых, или Нефильтрующий AdGuard DNS, который обеспечивает безопасное и надёжное соединение, но ничего не фильтрует. Вы даже можете добавить собственные DNS-серверы. Также есть возможность добавлять пользовательские правила, используя [синтаксис правил DNS-фильтрации](https://adguard-dns.io/kb/general/dns-filtering-syntax/). При необходимости вы можете добавить [DNS-фильтры по вашему выбору](https://filterlists.com).
@@ -76,16 +76,16 @@ sidebar_position: 2
Бывают сайты, доступ к которым стоит ограничивать, если компьютером пользуются дети. Эту задачу выполняет Родительский контроль.
-![Parental Control \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png)
+![Родительский контроль \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png)
Модуль проверяет содержимое веб-страниц, открытых в браузере, и отфильтровывает страницы с нежелательным для детей контентом: изображения и тексты для взрослых, ненормативная лексика, насилие, пропаганда наркотиков и т. д. Настройки Родительского контроля защищены паролем, чтобы ребёнок не смог обойти ограничения. Этот модуль не только блокирует доступ к нежелательным сайтам, но и удаляет неподходящие для детей ссылки из результатов поиска.
В модуле _Родительский контроль_ вы можете включить _Безопасный поиск_, а также указать, на какие сайты _Родительский контроль_ должен распространяться. Вы также можете включить функцию _Запретить загрузку программ_, чтобы ваш ребёнок не мог загружать и устанавливать программное обеспечение на компьютер. В модуле _Родительский контроль_ есть ещё две опции: вы можете выбрать конкретного пользователя Windows для защиты с помощью _Родительского контроля_ и установить пароль для защиты настроек AdGuard от изменений.
-![Parental Control \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png)
+![Родительский контроль \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png)
### Браузерный помощник
-![Browser Assistant \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/browser-assistant/browser-assistant.png)
+![Браузерный помощник \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/browser-assistant/browser-assistant.png)
Из этой вкладки вы можете легко перейти к установке Браузерного помощника AdGuard, основная функция которого — управлять фильтрацией прямо из браузера. Подробнее о том, как с ним работать и что делать, если для вашего браузера нет Помощника, мы рассказали [в отдельной статье](/adguard-for-windows/browser-assistant.md).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/installation.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/installation.md
index af2525f11a2..f7f210f20fe 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/installation.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/installation.md
@@ -23,31 +23,31 @@ sidebar_position: 2
Чтобы использовать программу AdGuard на компьютере или планшете под управлением Microsoft Windows, загрузите установочный пакет этого приложения и запустите программу установки. Для этого выполните перечисленные ниже действия:
-1. Go to the [AdGuard website](http://adguard.com) in the address bar and click *Download* [on the homepage](https://adguard.com/download.html?auto=1).
+1. Перейдите [ на сайт AdGuard](http://adguard.com) в адресной строке и нажмите *Скачать*.
- ![Download AdGuard](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/download-from-website.png)
+ ![Скачайте AdGuard](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/download-from-website.png)
-2. When the download is finished, press the *Open* button shown in the Downloads bar or click the file name *adguardInstaller.exe*.
+2. После завершения загрузки нажмите на кнопку *Открыть*, которая отобразится на панели загрузки браузера, либо нажмите на скачанный файл *adguardInstaller.exe*.
- ![Press "Run"](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/click-download.png)
+ ![Нажмите "Запустить"](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/click-download.png)
-3. You’ll see the User Account Control dialogue box requesting to allow the app to make changes to your PC. Click *Yes*.
+3. Вы увидите окно Контроля учётных записей, запрашивающее разрешение вносить изменения в ваш компьютер. Нажмите *Да*.
- ![Allow changes *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/allow-changes.png)
+ ![Разрешите изменения *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/allow-changes.png)
-4. Next, choose the folder on your PC for the app to be installed to.
+4. Выберите папку на компьютере, в которую будет установлено приложение.
- ![Choose folder *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/install-wizard.png)
+ ![Выберите папку *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/install-wizard.png)
- If you do not agree with the default installation path, press *Browse*, select the folder for AdGuard installation in the *Browse For Folder* window, and confirm your choice by clicking *OK*. You can also install AdGuard to a new folder by clicking *Make New Folder* and entering its name. To create a desktop shortcut for AdGuard, check the *Create a desktop shortcut* box. Press *Install* to proceed with installation.
+ Если вы не согласны с путём установки по умолчанию, нажмите *Обзор*, укажите папку для установки AdGuard в окне *Обзор папок* и подтвердите свой выбор, нажав *ОК*. Вы также можете установить AdGuard в новую папку, нажав *Создать папку* и введя её имя. Чтобы добавить ярлык AdGuard на рабочий стол Windows, установите флажок *Создать ярлык на рабочем столе*. Для продолжения установки нажмите на кнопку *Установить*.
- ![Start installation *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/start-install.png)
+ ![Начните установку *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/start-install.png)
-5. Wait for the installation to complete and click *Finish*.
+5. Дождитесь завершения установки и нажмите *Готово*.
- ![Complete installation *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/finish-install.png)
+ ![Полная установка *border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/installation/finish-install.png)
- Congratulations! You have successfully installed AdGuard on your computer. On the screen you will see the main window where you can change the app’s settings.
+ Поздравляем! Вы установили AdGuard на компьютер. На экране отобразится основное окно приложения, в котором вы сможете изменить его настройки.
## Как удалить AdGuard для Windows {#uninstall}
@@ -105,20 +105,20 @@ sidebar_position: 2
AdGuard успешно удалён
-#### Running the uninstaller in console mode
+#### Запуск инструмента удаления в консольном режиме
-Besides running the advanced uninstaller in its user-interactive mode, you can also use command-line arguments to uninstall AdGuard for Windows. To do this, follow the instructions below:
+Вы также можете использовать командную строку, чтобы запустить программу удаления AdGuard для Windows. Чтобы это сделать, следуйте инструкции ниже:
-1. Open Command Prompt by typing *cmd* from the Start menu.
-2. Use `/console` to run the uninstaller in console mode, without the interactive UI. All the command-line parameters below will be ignored if the `/console` mode is not activated.
-3. Use `/adblocker` to uninstall AdGuard for Windows. Это должно выглядеть так:
+1. Введите *cmd* в меню Пуск, чтобы открыть командную строку.
+2. Используйте `/console`, чтобы запустить программу удаления в консольном режиме, без интерактивного интерфейса. Все параметры командной строки ниже будут игнорироваться, если режим `/console` не активирован.
+3. Используйте `/adblocker`, чтобы удалить AdGuard для Windows. Это должно выглядеть так:
`Adguard.UninstallUtility.exe /console /adblocker`
-4. You can also use `/advanced` to force the uninstaller to run in *Advanced mode* and `/settings` to force the uninstaller to remove user settings along with the application.
+4. Вы также можете использовать `/advanced`, чтобы принудить программу удалить программу в *расширенном режиме* и `/settings`, чтобы принудить программу удалить пользовательские настройки вместе с приложением.
:::note
-The use of the parameters `/console` and `/adblocker` is necessary for a successful uninstall. The parameters `/advanced` and `/settings` are optional.
+Для успешного удаления необходимо использование параметров `/console` и `/adblocker`. Параметры `/advanced` и `/settings` являются необязательными.
:::
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md
index 0b3a67abea1..35be5f3c982 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md
@@ -1,5 +1,5 @@
---
-title: Как получить логи AdGuard
+title: Как собирать логи AdGuard
sidebar_position: 3
---
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/solving-problems.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/solving-problems.md
index 5c434d28a26..bcfd0df8082 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/solving-problems.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/solving-problems.md
@@ -9,15 +9,15 @@ sidebar_position: 1
:::
-Here are some problems you may encounter and workarounds, guides, and instructions you may need.
+Вот некоторые проблемы, с которыми вы можете столкнуться, а также обходные пути и инструкции, которые вам могут понадобиться.
-- [WFP driver compatibility](/adguard-for-windows/solving-problems/wfp-driver/)
-- [Certificate-related issues](/adguard-for-windows/solving-problems/connection-not-trusted/)
-- [How to collect AdGuard logs](/adguard-for-windows/solving-problems/adguard-logs/)
-- [How to collect AdGuard installation logs](/adguard-for-windows/solving-problems/installation-logs/)
-- [How to collect Windows system logs](/adguard-for-windows/solving-problems/system-logs/)
-- [Common installer errors](/adguard-for-windows/solving-problems/common-installer-errors/)
-- [Advanced (low-level) Settings guide](/adguard-for-windows/solving-problems/low-level-settings/)
-- [How to create a dump file](/adguard-for-windows/solving-problems/dump-file/)
-- [Possible DNS leaks](/adguard-for-windows/solving-problems/dns-leaks/)
-- [Known issues of AdGuard for Windows](/adguard-for-windows/solving-problems/known-issues/)
+- [Совместимость WFP-драйвера](/adguard-for-windows/solving-problems/wfp-driver/)
+- [Проблемы, связанные с сертификатом](/adguard-for-windows/solving-problems/connection-not-trusted/)
+- [Как собирать логи AdGuard](/adguard-for-windows/solving-problems/adguard-logs/)
+- [Как собирать логи установки AdGuard](/adguard-for-windows/solving-problems/installation-logs/)
+- [Как собирать системные логи Windows](/adguard-for-windows/solving-problems/adguard-logs/)
+- [Типичные ошибки установщика](/adguard-for-windows/solving-problems/common-installer-errors/)
+- [Расширенные (низкоуровневые) настройки](/adguard-for-windows/solving-problems/low-level-settings/)
+- [Как создать файл дампа](/adguard-for-windows/solving-problems/dump-file/)
+- [Возможные утечки DNS](/adguard-for-windows/solving-problems/dns-leaks/)
+- [Известные проблемы AdGuard для Windows](/adguard-for-windows/solving-problems/known-issues/)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/account/features.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/account/features.md
index 5839929135b..57e7106f914 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/account/features.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/account/features.md
@@ -7,7 +7,7 @@ sidebar_position: 2
## Управление настройками личного кабинета
-В разделе *Настройки* аккаунта AdGuard вы можете обновить или сбросить пароль, изменить адрес электронной почты, включить [двухфакторную аутентификацию](../2fa), просмотреть данные, сохранённые о вас AdGuard, и выбрать язык личного кабинета и уведомлений.
+В разделе *Настройки* вы можете обновить пароль и адрес почты, включить [двухфакторную аутентификацию](../2fa), просмотреть данные, сохранённые о вас в AdGuard, и выбрать язык личного кабинета и рассылок.
В этом разделе вы также можете управлять настройками электронной почты:
@@ -35,4 +35,4 @@ sidebar_position: 2
## Связаться с поддержкой
-Вкладка «Поддержка» содержит полезные ссылки, которые помогут вам решить проблемы или найти ответы на ваши вопросы о продуктах AdGuard. They are divided into six sections: FAQ, Send a bug repot/feature request, Report incorrect blocking, Contact support, Knowledge Base, and Discuss.
+Вкладка «Поддержка» содержит полезные ссылки, которые помогут вам решить проблемы или найти ответы на ваши вопросы о продуктах AdGuard. Вы увидите шесть разделов: FAQ, «Отправить отчёт об ошибке/новое предложение», «Сообщить о некорректной блокировке», «Написать в поддержку», «База знаний» и «Обсудить».
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 1bdb94a7d17..26e55384348 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -265,7 +265,7 @@ Wildcard-символы поддерживаются для TLD-доменов
-| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard for Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
+| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
| --------------------------------------------------- |:-------------------------------------:|:--------------------------------------:|:--------------------------------------:|:--------------------------------------:|:--------------------------------------:|:--------------------------------------:|:---------------------------------:|
| [$app](#app-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| [$denyallow](#denyallow-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
@@ -318,7 +318,7 @@ Wildcard-символы поддерживаются для TLD-доменов
:::info Совместимость
- Только AdGuard для Windows, Mac и Android имеют технические возможности для поддержки правил с модификатором `$app`.
-- On Windows the process name is case-insensitive starting with AdGuard for Windows with [CoreLibs][] v1.12 or later.
+- На Windows имя процесса нечувствительно к регистру, начиная с версий AdGuard для Windows [c CoreLibs][] 1.12 или более поздней версии.
:::
@@ -381,11 +381,11 @@ entry_i = ( regular_domain / any_tld_domain / regexp )
- **`Regular_domain`** — обычное доменное имя (`domain.com`). Соответствует указанному домену и его поддоменам. Сопоставляется лексикографически.
- **`any_tld_domain`** — доменное имя, оканчивающееся подстановочным знаком в качестве [публичного суффикса](https://publicsuffix.org/learn/), например, для `example.*` это `co.uk` в `example.co.uk`. Соответствует указанному домену и его поддоменам с любым публичным суффиксом. Сопоставляется лексикографически.
-- **`regexp`** — регулярное выражение, начинается и заканчивается символом `/`. The pattern works the same way as in the basic URL rules, but the characters `/`, `$`, `,`, and `|` must be escaped with `\`.
+- **`regexp`** — регулярное выражение, начинается и заканчивается символом `/`. Паттерн работает так же, как и в основных правилах URL, но символы `/`, `$`, `,` и `|` должны быть экранированы с помощью `\`.
:::info
-Rules with `$domain` modifier as `regular_domain` are supported by all AdGuard products.
+Правила с модификатором `$domain` в виде `regular_domain` поддерживаются всеми продуктами AdGuard.
:::
@@ -458,7 +458,7 @@ Safari не поддерживает одновременно разрешённ
:::info Совместимость
-Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later.
+Правила с регулярными выражениями в модификаторе `$domain` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android [с CoreLibs][] версии 1.11 или выше и в Браузерном расширении AdGuard [с TSUrlFilter][] версии 3.0.0 или выше.
In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`.
@@ -495,14 +495,14 @@ h_value = string / regexp
:::caution Ограничения
-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).
+1. Модификатор `$header` может быть сопоставлен, только когда заголовки получены. Если запрос блокируется или перенаправляется на более ранней стадии, модификатор не может быть применён.
+1. В браузерном расширении AdGuard модификатор `$header` совместим только с [`$csp`](#csp-modifier), [`$removeheader`](#removeheader-modifier), [`$important`](#important-modifier) и [`$badfilter`](#badfilter-modifier).
:::
:::info Совместимость
-Rules with the `$header` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later.
+Правила с модификатором `$header` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android [с CoreLibs][] версии 1.11 или выше и в Браузерном расширении AdGuard [с TSUrlFilter][] версии 3.0.0 или выше.
:::
@@ -561,7 +561,7 @@ Rules with the `$header` modifier are supported by AdGuard for Windows, AdGuard
:::info Совместимость
-Rules with `$method` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.12 or later, and AdGuard Browser Extension for Chrome, Firefox, and Edge with [TSUrlFilter][] v2.1.1 or later.
+Правила с модификатором `$method` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android [с CoreLibs][] 1.12 или более поздней версии, а также в Браузерном расширении AdGuard для Chrome, Firefox и Edge с [TSUrlFilter][] 2.1.1 или более поздней версии.
:::
@@ -577,10 +577,10 @@ AdGuard будет пытаться закрыть браузерную вкла
:::caution Ограничения
-1. The `$popup` modifier works best in AdGuard Browser Extension for Chromium-based browsers and Firefox.
-1. In [AdGuard for Chrome MV3][ext-mv3] rules with the [`$popup`][popup-in-mv3] modifier would not work, so we disable converting them to declarative rules. We will try to use them only in our [TSUrlFilter][] engine and close new tabs programmatically.
+1. Модификатор `$popup` лучше всего работает в расширении AdGuard для браузеров на базе Chromium и Firefox.
+1. In [AdGuard for Chrome MV3][ext-mv3] rules with the [`$popup`][popup-in-mv3] modifier would not work, so we disable converting them to declarative rules. Мы попытаемся использовать их только в нашем движке [TSUrlFilter][] и закрывать новые вкладки программно.
1. В AdGuard для iOS и AdGuard для Safari `$popup`-правила просто заблокируют страницу.
-1. В AdGuard для Windows, AdGuard для Mac и AdGuard для Android модификатор `$popup` в некоторых случаях может не обнаружить всплывающее окно, и оно не будет заблокировано. Модификатор `$popup` применяет тип контента `document` со специальным флагом, который передаётся блокирующей странице. Блокирующая страница сама может провести некоторые проверки и закрыть окно, если это действительно всплывающее окно. В противном случае страница должна быть загружена. It can be combined with other request type modifiers, such as `$third-party`, `$strict-third-party`, `$strict-first-party`, and `$important`.
+1. В AdGuard для Windows, AdGuard для Mac и AdGuard для Android модификатор `$popup` в некоторых случаях может не обнаружить всплывающее окно, и оно не будет заблокировано. Модификатор `$popup` применяет тип контента `document` со специальным флагом, который передаётся блокирующей странице. Блокирующая страница сама может провести некоторые проверки и закрыть окно, если это действительно всплывающее окно. В противном случае страница должна быть загружена. Его можно комбинировать с другими модификаторами типа запроса, такими как `$third-party`, `$strict-third-party`, `$strict-first-party` и `$important`.
:::
@@ -592,47 +592,47 @@ AdGuard будет пытаться закрыть браузерную вкла
#### **`$strict-first-party`** {#strict-first-party-modifier}
-Works the same as the [`$~third-party`](#third-party-modifier) modifier, but only treats the request as first-party if the referrer and origin have exactly the same hostname.
+Работает так же, как модификатор [`$~third-party`](#third-party-modifier), но обрабатывает запрос как запрос первой стороны только в том случае, если реферер и источник имеют одинаковое имя хоста.
**Примеры**
-- domain.com$strict-first-party' — this rule applies only to `domain.com`. Например, запрос с домена `domain.com` к домену `http://domain.com/icon.ico` — это запрос первой стороны. A request from `sub.domain.com` to `http://domain.com/icon.ico` is treated as a third-party one (as opposed to the `$~third-party` modifier).
+- domain.com$strict-first-party — это правило применяется только к `domain.com`. Например, запрос с домена `domain.com` к домену `http://domain.com/icon.ico` — это запрос первой стороны. Запрос от `sub.domain.com` к `http://domain.com/icon.ico` рассматривается как сторонний (в отличие от модификатора `$~third-party`).
:::note
-You can use a shorter name (alias) instead of using the full modifier name: `$strict1p`.
+Вы можете использовать более короткое название (псевдоним) вместо полного названия модификатора: `$strict1p`.
:::
:::info Совместимость
-Rules with the `$strict-first-party` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.16 or later.
+Правила с модификатором `$strict-first-party` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android с [CoreLibs][] версии 1.16 или выше.
:::
#### **`$strict-third-party`** {#strict-third-party-modifier}
-Works the same as the [`$third-party`](#third-party-modifier) modifier but also treats requests from the domain to its subdomains and vice versa as third-party requests.
+Работает так же, как модификатор [`$third-party`](#third-party-modifier), но также обрабатывает запросы от домена к его поддоменам и наоборот как сторонние запросы.
**Примеры**
-- `||domain.com^$strict-third-party` — правило применяется на всех доменах, кроме `domain.com`. An example of a third-party request: `http://sub.domain.com/banner.jpg` (as opposed to the `$third-party` modifier).
+- `||domain.com^$strict-third-party` — правило применяется на всех доменах, кроме `domain.com`. Пример стороннего запроса: `http://sub.domain.com/banner.jpg` (в отличие от модификатора `$third-party`).
:::note
-You can use a shorter name (alias) instead of using the full modifier name: `$strict3p`.
+Вы можете использовать более короткое название (псевдоним) вместо полного названия модификатора: `$strict3p`.
:::
:::info Совместимость
-Rules with the `$strict-third-party` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.16 or later.
+Правила с модификатором `$strict-third-party` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android с [CoreLibs][] версии 1.16 или выше.
:::
#### **`$third-party`** {#third-party-modifier}
-A restriction on third-party and custom requests. A third-party request is a request from an external domain. Например, запрос к домену `example.org`, отправленный с домена `domain.com`, является сторонним.
+Ограничение на сторонние или пользовательские запросы. Сторонним является запрос, отправленный с внешнего домена. Например, запрос к домену `example.org`, отправленный с домена `domain.com`, является сторонним.
:::note
@@ -653,7 +653,7 @@ A restriction on third-party and custom requests. A third-party request is a req
**`$~third-party`:**
-- `||domain.com$~third-party` — это правило применяется исключительно к `domain.com`. Example of a non third-party request: `http://domain.com/icon.ico`.
+- `||domain.com$~third-party` — это правило применяется исключительно к `domain.com`. Пример запроса, который не является сторонним: `http://domain.com/icon.ico`.
:::note
@@ -679,7 +679,7 @@ A restriction on third-party and custom requests. A third-party request is a req
:::info Совместимость
-Rules with the `$to` modifier are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.12 or later, and AdGuard Browser Extension with [TSUrlFilter][] v2.1.3 or later.
+Правила с модификатором `$to` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android [с CoreLibs][] версии 1.12 или выше и в Браузерном расширении AdGuard [с TSUrlFilter][] версии 2.1.3 или выше.
:::
@@ -701,7 +701,7 @@ Rules with the `$to` modifier are supported by AdGuard for Windows, AdGuard for
-| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard for Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
+| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
| ------------------------------------------------------------ |:-------------------------------------------:|:-------------------------------:|:---------------------------------:|:-----------------------------:|:-----------------------------------------:|:-----------------------------------------:|:---------------------------------:|
| [$document](#document-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
| [$font](#font-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -774,7 +774,7 @@ Rules with the `$to` modifier are supported by AdGuard for Windows, AdGuard for
Правило соответствует запросам, вызванным атрибутом `navigator.sendBeacon()` или `ping` в ссылках.
-##### `$ping` modifier limitations {#ping-modifier-limitations}
+##### Ограничения модификатора `$ping` {#ping-modifier-limitations}
:::caution Ограничения
@@ -900,7 +900,7 @@ AdGuard для Windows, Mac и Android часто не может точно о
-| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard for Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
+| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
| --------------------------------------- |:------------------------------:|:-------------------------------:|:----------------------------------------:|:-----------------------------:|:--------------------------------------------:|:--------------------------------------------:|:---------------------------------:|
| [$content](#content-modifier) | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ |
| [$elemhide](#elemhide-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -1184,7 +1184,7 @@ Rules with `$genericblock` modifier are not supported by AdGuard Content Blocker
-| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard for Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
+| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
| ------------------------------------------- |:-------------------------------------------:|:-------------------------------:|:-------------------------------------------:|:-------------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:|
| [$all](#all-modifier) | ✅ | ✅ | ✅ [*[1]](#all-modifier-limitations) | ✅ | ✅ | ✅ | ❌ |
| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ [*[2]](#badfilter-modifier-limitations) | ✅ | ✅ | ✅ | ❌ |
@@ -2926,7 +2926,7 @@ The [`$replace`](#replace-modifier) modifier takes precedence over all blocking
However, basic rules may not be enough to block ads. Sometimes you need to hide an element or change part of the HTML code of a web page without breaking anything. The rules described in this section are created specifically for this purpose.
-| Категории \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard for Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
+| Категории \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
| --------------------------------------------- |:------------------------------:|:-------------------------------:|:---------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:|
| [Скрытие элементов](#cosmetic-elemhide-rules) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [CSS-правила](#cosmetic-css-rules) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
@@ -4180,7 +4180,7 @@ For example, `[$domain=example.com,app=test_app]##selector`.
In the modifiers values, the following characters must be escaped: `[`, `]`, `,`, and `\` (unless it is used for the escaping). Use `\` to escape them. For example, an escaped bracket looks like this: `\]`.
-| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard for Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
+| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Chrome MV3][ext-mv3] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] |
| ------------------------------------- |:------------------------------:|:---------------------------------------------:|:------------------------------------------------:|:---------------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:|
| [$app](#non-basic-app-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| [$domain](#non-basic-domain-modifier) | ✅ | ✅ | ✅ [*[1]](#non-basic-domain-modifier-limitations) | ✅ | ✅ | ✅ | ❌ |
@@ -4778,6 +4778,9 @@ The following scriptlets also may be used for debug purposes:
[gh-filters-downloader]: https://github.com/AdguardTeam/FiltersDownloader
[FiltersRegistry]: https://github.com/AdguardTeam/FiltersRegistry
+[c CoreLibs]: https://adguard.com/en/blog/introducing-corelibs.html
+[с CoreLibs]: https://adguard.com/en/blog/introducing-corelibs.html
[CoreLibs]: https://adguard.com/en/blog/introducing-corelibs.html
+[с TSUrlFilter]: https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/tsurlfilter#tsurlfilter
[TSUrlFilter]: https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/tsurlfilter#tsurlfilter
[TSWebExtension]: https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/tswebextension#tswebextension
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index ce214741cf2..099af3fe598 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ sidebar_position: 1
Пользователи AdGuard [могут отправлять такие отчёты при помощи специальной веб-утилиты](https://reports.adguard.com/new_issue.html). Благодаря жалобам пользователей разработчики могут сфокусироваться на исправлении и дополнении фильтров, а не на поиске пропущенной рекламы по всей сети.
-Фильтры могут гораздо больше, чем просто блокировать рекламу. Существуют фильтры для блокировки трекеров, виджетов социальных сетей, раздражающих элементов вроде уведомлений о куки и т. д. Разные пользователи могут выбирать разные комбинации фильтров, чтобы подстроить фильтрацию под свои нужды. Существуют специальные сайты, такие как [filterlists.com](https://filterlists.com/), где собраны огромные базы всевозможных фильтров.
+Фильтры могут гораздо больше, чем просто блокировать рекламу. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Разные пользователи могут выбирать разные комбинации фильтров, чтобы подстроить фильтрацию под свои нужды. Существуют специальные сайты, такие как [filterlists.com](https://filterlists.com/), где собраны огромные базы всевозможных фильтров.
Мы разрабатываем и поддерживаем свой [собственный набор фильтров](../adguard-filters), которые можно использовать как внутри AdGuard, так и с другими блокировщиками.
@@ -62,3 +62,40 @@ sidebar_position: 1
Есть и другие типы правил фильтрации, но для их понимания необходим ещё более высокий уровень технической подготовки. Если вам интересно, вы можете [ознакомиться с подробным описанием правил фильтрации в статье по ссылке](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/search-ads.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/search-ads.md
index e1c61d3d015..e5420ea5586 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/search-ads.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/search-ads.md
@@ -23,7 +23,7 @@ sidebar_position: 3
![Поисковая реклама](https://cdn.adtidy.org/content/kb/ad_blocker/general/echodot.jpg)
-Наша общая позиция в отношении саморекламы очень похожа на политику EasyList. В соответствии с нашей [политикой фильтров](../filter-policy), мы не должны блокировать такую рекламу. В то же время, мы не должны делать для неё исключений в случаях, когда она заблокирована каким-либо правилом вместе с обычной рекламой.
+Наша общая позиция в отношении саморекламы очень похожа на политику EasyList. В соответствии с нашей [политикой фильтров](../filter-policy) мы не должны блокировать такую рекламу. В то же время мы не должны делать для неё исключений в случаях, когда она заблокирована каким-либо правилом вместе с обычной рекламой.
Отчасти это объясняется этическими соображениями, но в основном тем, что такая реклама редко бывает слишком навязчивой и часто — полезной для посетителя сайта (который предположительно заинтересован в содержании этого сайта).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/tracking-filter-statistics.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/tracking-filter-statistics.md
index f451b7262e2..76112a97cc7 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/tracking-filter-statistics.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/tracking-filter-statistics.md
@@ -26,8 +26,8 @@ sidebar_position: 4
Если у вас включена опция *«Отправлять статистику использования рекламных фильтров»*, передаётся следующая информация:
- Версия расширения
-- Тип браузера (Firefox/Chrome/Safari/Opera/Яндекс.Браузер).
-- Список включённых рекламных фильтров.
+- Тип браузера (Firefox/Chrome/Safari/Opera/Яндекс Браузер)
+- Список включённых рекламных фильтров
- Список, состоящий из следующих элементов:
- *Доменное имя сайта*
- *Количество просмотров страниц сайта за последнее время*
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/browsing-security.md
index 52a55a4b58a..fc7278740a7 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -11,49 +11,49 @@ sidebar_position: 3
:::
-## Как AdGuard проверяет сайты?
+## Как AdGuard проверяет сайты
-Каждый раз, когда вы посещаете сайт, ваш локальный клиент обменивается информацией с нашим внутренним сервером в виде хешей и хеш-префиксов. На основе этого обмена локальный клиент определяет, занесён ли сайт в базу потенциально опасных сайтов. There is a difference in the scope of this check for apps and extensions.
+Каждый раз, когда вы посещаете сайт, ваш локальный клиент обменивается информацией с нашим внутренним сервером в виде хешей и хеш-префиксов. На основе этого обмена локальный клиент определяет, занесён ли сайт в базу потенциально опасных сайтов. Возможности такой проверки различаются для приложений и ресширений.
### В приложениях
-AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
+AdGuard обеспечивает наилучшую защиту, проверяя как страницы, так и все загруженные на них объекты. AdGuard проверяет URL и доменные имена с помощью префиксов хешей, а не полных URL, поэтому не знает, какие сайты вы посещаете. Наши серверы отвечают на запрос приложения списком всех возможных адресов, соответствующих префиксу хеша. Когда на основе совпадений хеша обнаруживается потенциальная угроза, доступ к этому сайту немедленно блокируется.
-![DNS-предупреждение](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![Предупреждение AdGuard](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### В браузерных расширениях
-Наши браузерные расширения могут проверять только имена доменов, а не полные URL-адреса. They are also unable to check subqueries. This means that if there are potentially malicious elements on the page, they will be loaded even if the page itself is from a safe domain. The extension won’t be able to protect against them. It's also important to note that the check performed is asynchronous, i.e. it happens at the same time as the page is loaded, so it’s possible that malware could be loaded as well.
+Наши браузерные расширения могут проверять только имена доменов, а не полные URL-адреса. Они также не могут проверять подзапросы. Если страница находится на безопасном домене, но на ней есть потенциально вредоносные элементы, они будут загружены. Расширение не сможет защитить от них. Проверка выполняется асинхронно, то есть одновременно с загрузкой страницы. Это тоже слегка повышает вероятность загрузки вредоносного ПО.
-## Setting up phishing and malware protection in AdGuard products
+## Как настроить защиту от фишинга и вредоносного ПО в продуктах AdGuard
-- **For Windows**: Activate the *Browsing Security* module in the *Settings* menu
+- **Для Windows**: Включите *Защиту от фишинга* в *Настройках*
-![Browsing Security in Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png)
+![Защита от фишинга на Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png)
-- **For Mac**: Enable the *Security* module in *Preferences*
+- **Для Mac**: Включите модуль *Безопасность* в *Настройках*
-![Безопасность в Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png)
+![Безопасность на Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png)
-- **For Android**: Turn on *Browsing Security* in the *Protection* tab
+- **Для Android**: Включите *Защиту от фишинга* на вкладке *Защита*
-![Browsing security in Android *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_android.png)
+![Защита от фишинга на Android *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_android.png)
-- **For iOS**: Although there’s no separate module, you can go to *Safari protection* → *Filters* → *Security* and enable the available filters. Кроме того, включите *DNS-защиту* и выберите один из серверов AdGuard DNS
+- **Для iOS**: Хотя отдельный модуль не предусмотрен, вы можете перейти в *Защиту Safari* → *Фильтры* → *Безопасность* и включить доступные фильтры. Кроме того, включите *DNS-защиту* и выберите один из серверов AdGuard DNS
-![Безопасность в iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg)
+![Безопасность на iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg)
-- **Для расширений браузера**: включите *Защитe от фишинговых и вредоносных сайтов* на вкладке *Настройки*. Для усиленной защиты перейдите в *Фильтры* → *Безопасность* и активируйте доступные фильтры
+- **Для браузерных расширений**: включите *Защиту от фишинговых и вредоносных сайтов* во вкладке *Настройки*. Для усиленной защиты перейдите в *Фильтры* → *Безопасность* и активируйте доступные фильтры
![Защита от фишинга и вредоносных программ](https://cdn.adtidy.org/content/kb/ad_blocker/general/extension_protection.png)
-- **Для приватного DNS AdGuard:** Включите защиту от вредоносных программ в *Настройках сервера* в разделе *Безопасность*
+- **Для приватного AdGuard DNS:** Включите защиту от вредоносных программ в *Настройках сервера* в разделе *Безопасность*
![Безопасность в DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png)
## Что мы блокируем
-Мы используем два основных фильтра: один защищает от фишинговых и мошеннических сайтов, которые пытаются украсть учётные данные пользователя, а другой блокирует доступ к сайтам. Эти сайты, как известно, распространяют вредоносное ПО, что может привести к потере данных, утечке информации или повреждению устройства. These filters also protect you from websites with various scams and fraudulent schemes. Более подробную информацию можно найти в этой [статье на Википедии](https://ru.wikipedia.org/wiki/Фишинг).
+Мы используем два основных фильтра. Один защищает от фишинговых и мошеннических сайтов, которые пытаются украсть учётные данные пользователя. Другой блокирует доступ к сайтам, которые распространяют вредоносное ПО, что может привести к потере данных, утечке информации или повреждению устройства. Эти фильтры также защищают вас от сайтов с различными мошенническими схемами и обманом. Более подробную информацию можно найти в этой [статье на Википедии](https://ru.wikipedia.org/wiki/Фишинг).
## Поддержка наших фильтров
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/extensions.md
index 467aac420ce..85e4d7c57aa 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -7,79 +7,79 @@ sidebar_position: 6
Пользовательские скрипты (мы также называем их «расширениями») — это мини-программы, написанные на языке JavaScript. Они модифицируют или расширяют функциональность одного или нескольких сайтов. Многие пользователи AdGuard уже наверняка знакомы с такими расширениями, как Помощник AdGuard, Блокировщик всплывающей рекламы и AdGuard Extra.
-:::note Supported apps
+:::note Поддерживаемые приложения
-AdGuard может значительно расширять функциональность сайтов, работая как менеджер пользовательских скриптов. You can add your custom scripts or manage the existing ones in our three products: [AdGuard for Windows](/adguard-for-windows/features/extensions), [AdGuard for Android](/adguard-for-android/features/settings#userscripts), and [AdGuard for Mac](/adguard-for-mac/features/extensions).
+AdGuard может значительно расширять функциональность сайтов, работая как менеджер пользовательских скриптов. Вы можете добавлять собственные скрипты или управлять существующими в наших трёх продуктах: [AdGuard для Windows](/adguard-for-windows/features/extensions), [AdGuard для Android](/adguard-for-android/features/settings#userscripts) и [AdGuard для Mac](/adguard-for-mac/features/extensions).
:::
### Рекомендуемые скрипты AdGuard
-Эти пользовательские скрипты разработаны в AdGuard, и мы можем гарантировать, что они эффективны и безопасны. For some of the userscripts developed by others that we consider good and reliable, [scroll down to the next section](#top-picks). You can also find some of the [popular websites with scripts](#more-userscripts) below, but remember that whenever you download a userscript from an unknown source, you are exposing yourself to a certain risk, as some scripts may be harmful to your computer.
+Эти пользовательские скрипты разработаны в AdGuard, и мы можем гарантировать, что они эффективны и безопасны. Есть и другие пользовательские скрипты, разработанными другими людьми, которые мы считаем хорошими и надёжными. Чтобы ознакомиться с ними, прокрутите страницу вниз [до следующего раздела[(#top-picks). Вы также можете найти [популярные сайты со скриптами](#more-userscripts) ниже. Помните, что скачивать пользовательские скрипты из неизвестных источников может быть небезопасно.
#### AdGuard Extra
-Расширение, которое блокирует рекламу в сложных случаях, когда привычного подхода, основанного на фильтрах, недостаточно. AdGuard Extra comes pre-installed in AdGuard standalone apps, except for the one for iOS, so you don't need to do anything to enable it. Однако, если вы хотите использовать его вместе с Браузерным расширением AdGuard или любым другим блокировщиком рекламы, вам понадобится дополнительное расширение. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/AdGuardExtra).
+Расширение, которое блокирует рекламу в сложных случаях, когда привычного подхода, основанного на фильтрах, недостаточно. AdGuard Extra предустановлен и включён по умолчанию в AdGuard для Windows, AdGuard для Mac и AdGuard для Android (в платной версии). Если вы хотите использовать AdGuard Extra вместе с Браузерным расширением AdGuard или любым другим блокировщиком рекламы, вам понадобится установить отдельное расширение. [На GitHub](https://github.com/AdguardTeam/AdGuardExtra) есть подробности об этом пользовательском скрипте и о том, как его установить.
![AdGuard Extra](https://cdn.adtidy.org/content/kb/ad_blocker/general/adguard-extra.png)
#### Блокировщик всплывающих окон
-The name speaks for itself: it blocks popups — one of the most annoying types of ads on websites. Learn more about this userscript, its key features, and installation on [GitHub](https://github.com/AdguardTeam/PopupBlocker).
+Этот пользовательский скрипт блокирует один из самых раздражающих типов рекламы — всплывающие окна. [На GitHub](https://github.com/AdguardTeam/PopupBlocker) есть подробности об этом пользовательском скрипте и о том, как его установить.
-![AdGuard Popup Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png)
+![Блокировщик всплывающих окон AdGuard](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png)
#### Помощник AdGuard (устаревшая версия)
-This custom extension is designed to control filtering directly from the browser page (manual blocking, allowlisting, etc.).
+Это расширение предназначено для управления фильтрацией прямо со страницы браузера: например, оно позволяет заблокировать элементы вручную или добавить сайт в белый список.
:::note
-This version of Assistant is legacy and there is no point in using it on new systems, as it has been replaced with the full-fledged [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). However, the legacy Assistant may be useful if there is no Browser Assistant for your browser. If this is your case, you can learn how to install AdGuard Assistant on [GitHub](https://github.com/AdguardTeam/AdguardAssistant).
+Это устаревшая версия Помощника. Её нет смысла использовать на новых системах, потому что её давно заменил полнноценный [Браузерный помощник](https://adguard.com/adguard-assistant/overview.html). Но предыдущая версия Помощника может пригодиться, если для вашего браузера нет Браузерного помощника. Если это ваш случай, перейдите [на GitHub](https://github.com/AdguardTeam/AdguardAssistant), чтобы установить Помощник AdGuard.
:::
#### Отключить AMP
-Скрипт, который предустановлен только в AdGuard для Android. Он отключает AMP (Accelerated Mobile Pages или «ускоренные мобильные страницы») на странице результатов поиска Google. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/DisableAMP).
+Скрипт, который предустановлен только в AdGuard для Android. Он отключает AMP (Accelerated Mobile Pages или «ускоренные мобильные страницы») на странице результатов поиска Google. [На GitHub](https://github.com/AdguardTeam/DisableAMP) есть подробности об этом пользовательском скрипте и о том, как его установить.
-![Disable AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png)
+![Отключить AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png)
### Лучшие варианты вне AdGuard{#top-picks}
-These userscripts are not developed by AdGuard, and therefore we can't give a 100% guarantee that they are safe and/or work at all times. However, in our experience they deserve a recommendation because they've all earned their good reputation.
+Эти пользовательские скрипты не разработаны AdGuard, поэтому мы не можем дать 100% гарантию, что они безопасны и/или работают всегда. Однако, исходя из нашего опыта, они заслуживают рекомендации, поскольку заслужили свою хорошую репутацию.
#### Don't track me Google
Этот скрипт удаляет функцию отслеживания Google из ссылок в результатах поиска Google. Это ускоряет загрузку результатов поиска и позволяет скопировать URL-адрес ссылки, щёлкнув по нему правой кнопкой мыши или нажав на него.
-Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
+Его исходный код [доступен на GitHub](https://github.com/Rob--W/dont-track-me-google). Этот пользовательский скрипт можно скачать [с сайта GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) и установить с помощью любого приложения AdGuard на основе CoreLibs (AdGuard для Windows, AdGuard для Mac и AdGuard для Android).
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+Пользовательский скрипт для тех, кто посещает корейские и некоторые международные сайты. Скрипт блокирует рекламу Ad-Shield и программы, обходящие блокировщики рекламы. Этот пользовательский скрипт можно установить с помощью приложений AdGuard на основе CoreLibs, а также с помощью Violentmonkey, Tampermonkey и [quoid/userscripts](https://github.com/quoid/userscripts). [На GitHub](https://github.com/List-KR/tinyShield) есть подробности об этом пользовательском скрипте и о том, как его установить.
### Где взять больше пользовательских скриптов{#more-userscripts}
-Since userscripts are mainly created by enthusiasts, you should be cautious when installing them. Любой скрипт из неизвестного источника несёт в себе потенциальный риск. Тем не менее, существует огромное количество интересных скриптов, которые, если установить их аккуратно и ответственно, могут действительно сделать использование некоторых сайтов более удобным.
+По большей части пользовательские скрипты создаются любителями, поэтому, устанавливая тот или иной скрипт, нужно быть очень осторожными. Любой скрипт из неизвестного источника несёт в себе потенциальный риск. Тем не менее, существует огромное количество интересных скриптов, которые, если установить их аккуратно и ответственно, могут действительно сделать использование некоторых сайтов более удобным.
Здесь мы опишем несколько популярных каталогов пользовательских скриптов.
#### Userscript.Zone
-[Userscript.Zone](https://www.userscript.zone) is a website that allows searching for userscripts by entering a matching URL or domain. The website is easy to use and has a high level of credibility as only scripts from moderated pages are displayed.
+[Userscript.Zone](https://www.userscript.zone) — это сайт, который позволяет искать пользовательские скрипты по URL или домену. Сайт простой в использовании и надёжный: он отображает скрипты только с модерируемых страниц.
#### Greasy Fork
-[Greasy Fork](https://greasyfork.org/) is a userscript catalog of Stylish creators. The scripts in this catalog are moderated, so their credibility is much higher.
+[Greasy Fork](https://greasyfork.org/) — это каталог пользовательских скриптов от создателей Stylish. Скрипты в этом каталоге проходят модерацию.
#### OpenUserJS.org
-[OpenUserJS.org](https://openuserjs.org/) is an open-source userscript catalog written in nodeJS. It's not moderated, so keep an eye out for suspicious scripts.
+[OpenUserJS.org](https://openuserjs.org/) — каталог пользовательских скриптов с открытым кодом, разработанный с использованием Node.js. Он не модерируется, поэтому проверяйте скрипты внимательно.
#### Сообщество
-If you like the idea of customizing your browser with userscripts and have questions, you can ask them on one of these websites:
+Если вы хотите персонализировать браузер при помощи пользовательских скриптов и у вас есть вопросы на эту тему, задать их можно на любом из этих сайтов:
- [Stackoverflow](https://stackoverflow.com/questions/tagged/userscripts)
- [FreeNode](https://webchat.freenode.net/#greasemonkey)
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Запросить лицензию
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-Для этого отправьте нам сообщение devteam@adguard.com со следующей информацией:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+Если вы разрабатываете собственный пользовательский скрипт и хотите протестировать, как он работает с AdGuard, вы можете запросить лицензию, заполнив [форму](https://surveys.adguard.com/ru/for_developers_request/form.html).
#### Совместимость
@@ -170,7 +162,7 @@ GM_addStyle
GM_log
```
-[Here](https://wiki.greasespot.net/GM.info) you can find more information about Greasemonkey API.
+[Здесь](https://wiki.greasespot.net/GM.info) вы можете найти больше информации о Greasemonkey API.
#### Пример
@@ -213,45 +205,45 @@ GM_log
## Пользовательские стили
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Пользовательские стили позволяют изменять внешний вид популярных сайтов.
-AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
+В AdGuard есть возможность загружать или создавать собственные пользовательские стили. Это продвинутая функция, поэтому вам понадобятся некоторые знания HTML и CSS.
-:::info Supported apps
+:::info Поддерживаемые приложения
-Currently, two AdGuard apps allow you to create and manage userstyles: AdGuard for Windows (v7.19 or later) and AdGuard for Mac (v2.16 or later). We also plan to implement this new feature in AdGuard v4.8 for Android in the nearest future.
+Сейчас создавать и управлять пользовательскими стилями можно в двух приложениях AdGuard: AdGuard для Windows (версии 7.19 или выше) и AdGuard для Mac (версии 2.16 или выше). Мы также планируем добавить эту функцию в AdGuard 4.8 для Android.
:::
-This is an experimental feature, so if you encounter any problems while adding or creating a userstyle, please contact our support team at .
+Это экспериментальная функция. Поэтому, если вы столкнётесь с проблемами при добавлении или создании пользовательского стиля, пожалуйста, напишите нашей команде поддержки на почту .
-### How to set up a userstyle in AdGuard
+### Как настроить пользовательский стиль в AdGuard
-You can download userstyles from various websites. One of the most popular userstyle websites is [https://userstyles.world/](https://userstyles.world/explore), which we will use as an example for the following instructions on how to set up the userstyle in AdGuard.
+Вы можете скачивать пользовательские стили с разных сайтов. Один из самых популярных сайтов — [https://userstyles.world/](https://userstyles.world/explore). Возьмём его в качестве примера.
-1. Follow the link above and choose the userstyle you like
+1. Перейдите по ссылке выше и выберите пользовательский стиль, который вам нравится
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Нажмите _Copy_ (Копировать) рядом с URL-адресом стиля
-3. Open AdGuard settings → _Extensions_
+3. Откройте настройки AdGuard → _Расширения_
-4. Press the [+] button and paste the userstyle link
+4. Нажмите на кнопку [+] и вставьте ссылку на пользовательский стиль
5. Готово!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+Если вы знакомы с правилами CSS, вы также можете создавать пользовательские стили самостоятельно.
:::note
-We don’t support userstyles that contain `@var` or `@advanced` in the metadata. AdGuard also doesn’t support `@preprocessor` without the `default` value.
+Мы не поддерживаем пользовательские стили, которые содержат `@var` или `@advanced` в метаданных. AdGuard также не поддерживает `@preprocessor` без значения `default`.
:::
-1. Open AdGuard settings → _Extensions_
+1. Откройте настройки AdGuard → _Расширения_
-2. Press the [+] button and choose the _Create userstyle_ option. A new window will appear on your screen
+2. Нажмите на кнопку [+] и выберите опцию _Создать стиль_. Откроется новое окно
-3. To create a userstyle, first write the title with metadata, for example
+3. Чтобы создать пользовательский стиль, сначала напишите заголовок с метаданными, например:
```CSS
/* ==UserStyle==
@@ -260,7 +252,7 @@ We don’t support userstyles that contain `@var` or `@advanced` in the metadata
==/UserStyle== */
```
-4. Write the CSS part after the meta data. AdGuard supports website domain names matching (`@-moz-document domain(…), …`). Например:
+4. После метаданных добавьте сам пользовательский стиль на основе CSS. AdGuard поддерживает доменные имена, соответствующие (`@-moz-document domain(…), …`). Например:
```CSS
body {
@@ -268,7 +260,7 @@ We don’t support userstyles that contain `@var` or `@advanced` in the metadata
}
```
- Or:
+ Или:
```CSS
@-moz-document domain('example.org'),
@@ -278,7 +270,7 @@ We don’t support userstyles that contain `@var` or `@advanced` in the metadata
}
```
-5. Once you’re finished, press _Save and Close_. Your new userstyle has been successfully added to AdGuard
+5. Когда закончите, нажмите _Сохранить и закрыть_. Готово, пользовательский стиль добавлен в AdGuard
### Пример
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/https-filtering/known-issues.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/https-filtering/known-issues.md
index 3011a8a4e30..a283c22d3a5 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/https-filtering/known-issues.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/https-filtering/known-issues.md
@@ -5,7 +5,7 @@ toc_min_heading_level: 2
toc_max_heading_level: 4
---
-Last update: September 17, 2024
+Последнее обновление: 17 сентября 2024 года
Понимание этой статьи может потребовать некоторых базовых знаний о шифровании, TLS и HTTPS.
@@ -32,38 +32,38 @@ AdGuard копирует свойства TLS-соединения, которы
Самый главный недостаток механизма HTTPS-фильтрации заключается в том, что он скрывает оригинальный сертификат сайта. Вы просто не можете увидеть реальный сертификат — вместо него вы видите тот, который сгенерировал AdGuard.
-This problem can be solved in 2 ways:
+Эту проблему можно решить 2 способами:
-- By using our [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). This browser extension helps you manage filtering directly from the browser and allows you to inspect the original certificate of any website
+- Используя наш [Браузерный помощник](https://adguard.com/adguard-assistant/overview.html). Это браузерное расширение помогает управлять фильтрацией прямо из браузера и позволяет просматривать исходные сертификаты сайтов.
- ![Certificate Browser Assistant *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-browser.png)
+ ![Браузерный помощник AdGuard *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-browser.png)
-- By visiting the *Recent activity* section in AdGuard for Android or the *Filtering log* section in AdGuard for Windows and AdGuard for Mac. While in the Browser Assistant you can only see the certificate of the website, in Recent activity you can inspect the certificate of any server used in a subrequest or browser, with or without the Browser Assistant. To view the certificate using this method, follow the instructions below.
+- В разделе *Недавняя активность* в AdGuard для Android или в *Журнале фильтрации* в AdGuard для Windows и AdGuard для Mac. В Браузерном помощнике вы можете увидеть только сертификат сайта, тогда как в Журнале фильтрации или Недавней активности вы можете проверить сертификат любого сервера, используемого в подзапросе или браузере. Ниже приведены инструкции, как просмотреть сертификат таким способом.
-#### Inspect original certificate in AdGuard for Android
+#### Как просмотреть оригинальный сертификат в AdGuard для Android
-1. Click the Statistics icon on the navigation bar.
-2. Go to *Recent activity*.
-3. Click the request whose certificate you want to inspect to open the request details.
-4. Scroll down to *Original certificate*. Click for more info.
+1. Нажмите на иконку статистики на панели навигации.
+2. Перейдите в *Недавнюю активность*.
+3. Нажмите на запрос, сертификат которого вы хотите проверить.
+4. Прокрутите вниз до пункта *Оригинальный сертификат*. Нажмите, чтобы увидеть больше подробностей.
-![Recent activity AdGuard for Android *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-android.png)
+![Недавняя активность AdGuard для Android *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-android.png)
-#### Inspect original certificate in AdGuard for Windows
+#### Как просмотреть оригинальный сертификат в AdGuard для Windows
-1. Go to *Settings* → *Ad Blocker* → *Filtering log*.
-2. Click the request whose certificate you want to inspect to open the request details.
-3. Under the *TLS* section, click *View website certificate*.
+1. Перейдите в *Настройки* → *Блокировка рекламы* → *Журнал фильтрации*.
+2. Нажмите на запрос, сертификат которого вы хотите проверить.
+3. В разделе *TLS* нажмите *Посмотреть сертификат*.
-![Filtering log AdGuard for Windows *border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-win.png)
+![Журнал фильтрации AdGuard для Windows *border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-win.png)
-#### Inspect original certificate in AdGuard for macOS
+#### Как просмотреть оригинальный сертификат в AdGuard для Mac
-1. Click the gear icon. In the drop-down menu, go to *Advanced* → *Filtering log...*.
-2. Click the request whose certificate you want to inspect to open the request details.
-3. Click *View certificate*.
+1. Нажмите на иконку шестерёнки. В выпадающем меню перейдите в *Дополнительно* → *Журнал запросов*.
+2. Нажмите на запрос, сертификат которого вы хотите проверить.
+3. Нажмите *Посмотреть сертификат*.
-![Filtering log AdGuard for Mac *border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-mac.png)
+![Журнал фильтрации AdGuard для Mac *border](https://cdn.adtidy.org/content/kb/ad_blocker/general/cert-mac.png)
### Прозрачность сертификата (Certificate Transparency)
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 8125649bfba..8001eaf12f4 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -15,7 +15,7 @@ sidebar_position: 4
:::
-## Основное {#general}
+## Основные {#general}
### Скрывать поисковые запросы {#searchqueries}
@@ -79,7 +79,7 @@ Push API даёт серверам возможность отправлять
### Блокировать Flash {#flash}
-The Flash Player plugin has become increasingly vulnerable to such online threats as viruses and hackers; it may also significantly increase website load times. При включении этой опции AdGuard блокирует возможность браузера определять наличие компонентов (плагинов и объектов ActiveXObject), позволяющих использовать технологии Flash для отображения содержимого. Фактически это означает, что браузеры не могут поддерживать эту технологию.
+Плагин Flash Player становится всё более уязвимым для таких интернет-угроз, как вирусы и хакерские атаки и, кроме того, может существенно увеличить время загрузки сайтов. При включении этой опции AdGuard блокирует возможность браузера определять наличие компонентов (плагинов и объектов ActiveXObject), позволяющих использовать технологии Flash для отображения содержимого. Фактически это означает, что браузеры не могут поддерживать эту технологию.
### Блокировать Java {#java}
@@ -95,7 +95,7 @@ Referer — это HTTP-заголовок, используемый в запр
Обратите внимание, что для фильтрации трафика приложения AdGuard перехватывают запросы от браузера к серверу. Запросы к рекламным, отслеживающим и фишинговым серверам могут быть изменены перед отправкой на сервер или полностью заблокированы. То же самое относится к настройке *Скрывать Referer от третьих лиц*: если она включена, AdGuard перехватывает HTTP(S)-запросы, в частности, чтобы удалить или изменить заголовок Referer. Однако это происходит только после того, как эти запросы «покинут» браузер. Это означает, что если вы отслеживаете Referer в браузере (например, с помощью инструментов разработчика Chrome), вы увидите оригинальный Referer, потому что запрос ещё не дошёл до AdGuard. Вы можете использовать такое программное обеспечение, как [Fiddler](https://www.telerik.com/fiddler), чтобы убедиться, что Referer изменяется правильно.
-On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. Оно изменит Referer незамедлительно, так что в инструментах разработчика будет виден желаемый Referer для ваших запросов.
+С другой стороны, из-за особенностей всех расширений, Браузерное расширение AdGuard работает «внутри» браузера. Оно изменит Referer незамедлительно, так что в инструментах разработчика будет виден желаемый Referer для ваших запросов.
### Скрывать User-Agent {#useragent}
@@ -113,7 +113,7 @@ On the other hand, due to the nature of all browser extensions, AdGuard Browser
Запрещает Google Chrome отправлять информацию о своей версии и модификациях с запросами на домены Google (включая DoubleClick и Google Analytics).
-### Защищать от DPI {#dpi}
+### Защита от DPI {#dpi}
DPI (Deep Packet Inspection) — это система глубокого анализа и фильтрации трафика по содержимому пакетов, а также накопления статистических данных. Используя её, интернет-провайдеры могут контролировать проходящий трафик и ограничивать любому своему клиенту доступ к контенту.
@@ -123,6 +123,6 @@ AdGuard может изменять данные исходящих пакето
:::caution
-If this feature is enabled in AdGuard for Windows, it may interfere with ESET antivirus. Anti-DPI will prevent ESET from filtering traffic, leaving blacklisted and malicious websites unblocked.
+Если эта функция включена в AdGuard для Windows, она может мешать работе антивируса ESET. «Защита от DPI» не позволит ESET фильтровать трафик, оставляя сайты из чёрного списка и вредоносные сайты не заблокированными.
:::
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/block-push-notifications.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/block-push-notifications.md
index def86f962e2..623a1972245 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/block-push-notifications.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/block-push-notifications.md
@@ -1,52 +1,52 @@
---
-title: How to block push notifications
+title: Как заблокировать push-уведомления
sidebar_position: 9
---
-If you're seeing annoying ads and popups in the bottom right corner of your screen, they're probably push notifications from your browser. While ad blockers can't stop them, you can easily disable them through your browser settings. Check out the step-by-step guide below to turn off these push notifications.
+Если вы видите раздражающую рекламу и всплывающие окна в правом нижнем углу экрана, скорее всего, это push-уведомления от вашего браузера. Хотя блокировщики рекламы не могут их остановить, вы можете легко отключить их в настройках браузера. Ознакомьтесь с пошаговым руководством ниже, чтобы отключить эти push-уведомления.
-## In Google Chrome
+## В Google Chrome
-1. Click the three vertical dots in the top right corner of the browser and select _Settings_.
-2. Go to _Privacy and security_ → _Site settings_ → _Notifications_.
-3. In _Default behaviour_, select _Don't allow sites to send notifications_. Alternatively, you can manage site-specific settings in _Customised behaviours_.
+1. Нажмите на три вертикальные точки в правом верхнем углу браузера и выберите _Настройки_.
+2. Перейдите в _Конфиденциальность и безопасность_ → _Настройки сайта_ → _Уведомления_.
+3. В _Настройках по умолчанию_ выберите _Запретить сайтам отправлять уведомления_. Кроме того, вы можете управлять настройками сайтов в _Специальных настройках_.
-## In Firefox
+## В Firefox
-1. Click the three horizontal lines in the top right corner of the navigation bar, then select _Settings_.
-2. Select _Privacy & Security_ from the menu on the left.
-3. Scroll down to the section _Permissions_, then click the button _Settings_ next to _Notifications_.
-4. To stop notifications on all previously approved websites, click _Remove All Websites_. Alternatively, you can manage notifications for each website individually.
-5. You can also select _Block new requests asking to allow notifications_ to stop all push notifications requests at once.
-6. Click _Save Changes_.
+1. Нажмите на три горизонтальные линии в правом верхнем углу панели навигации, затем выберите _Настройки_.
+2. Выберите _Конфиденциальность и безопасность_ из меню слева.
+3. Прокрутите вниз к разделу _Разрешения_, затем нажмите кнопку _Настройки_ рядом с _Уведомлениями_.
+4. Чтобы остановить уведомления на всех ранее разрешённых сайтах, нажмите _Удалить все сайты_. Кроме того, вы можете управлять уведомлениями для каждого сайта по отдельности.
+5. Вы также можете выбрать _Блокировать новые запросы на разрешение уведомлений_, чтобы остановить все запросы на push-уведомления сразу.
+6. Нажмите _Сохранить изменения_.
## В Safari
-1. Click _Safari_ in the menu bar → _System Settings_.
-2. Go to the _Websites_ tab.
-3. Select _Notifications_ from the left sidebar.
-4. To block all requests, uncheck _Allow websites to ask for permission to send notifications_. Alternatively, select _Deny_ for each site you want to block individually.
+1. Нажмите _Safari_ в строке меню → _Системные настройки_.
+2. Перейдите на вкладку _Сайты_.
+3. Выберите _Уведомления_ на левой боковой панели.
+4. Чтобы заблокировать все запросы, снимите флажок _Разрешить сайтам запрашивать разрешение на отправку уведомлений_. Либо выберите _Запретить_ для каждого сайта, который вы хотите заблокировать по отдельности.
-## In Microsoft Edge
+## В Microsoft Edge
-1. Click the three dots menu in the upper-right corner and select _Settings_.
-2. In the left sidebar, click _Cookies and site permissions_.
-3. Scroll down and click _Notifications_ under _Site permissions_.
-4. Toggle off _Ask before sending_ to block all browser notifications within Microsoft Edge.
-5. Alternatively, add domains to the _Block_ section for each site you want to block.
+1. Нажмите на три вертикальные точки в правом верхнем углу и выберите _Настройки_.
+2. На левой боковой панели нажмите _Файлы cookie и разрешения сайтов_.
+3. Прокрутите вниз и нажмите _Уведомления_ под _Разрешениями сайта_.
+4. Отключите параметр _Спрашивать перед отправкой_, чтобы заблокировать все уведомления браузера в Microsoft Edge.
+5. Либо добавьте домены в раздел _Блокировать_ для каждого сайта, который вы хотите заблокировать.
-## Blocking push notifications with AdGuard
+## Блокировка push-уведомлений с помощью AdGuard
-To avoid similar ads in the future, you can also block push notifications directly from the AdGuard apps.
+Чтобы избежать появления подобной рекламы в будущем, вы также можете заблокировать push-уведомления непосредственно из приложений AdGuard.
-### On Windows
+### На Windows
-1. Open AdGuard. Go to _Settings_ → _Stealth Mode_.
-2. Scroll down to the _Browser API_ section.
-3. Enable _Block Push API_.
+1. Откройте AdGuard. Перейдите в «Настройки» → «Защита от трекинга».
+2. Прокрутите страницу вниз до раздела _API браузера_.
+3. Включите _Блокировать Push API_.
-### On Mac
+### На Mac
-1. Open AdGuard. Перейдите в _Настройки_.
-2. In the _Stealth Mode_ tab, go to _Browser API_.
-3. Enable _Block Push API_.
+1. Откройте AdGuard. Перейдите в _Настройки_.
+2. На вкладке _Защита от трекинга_ перейдите к _API браузера_.
+3. Включите _Блокировать Push API_.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/collect-har-file.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/collect-har-file.md
index 9ad18f45b47..633c451f33e 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/collect-har-file.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/collect-har-file.md
@@ -113,7 +113,7 @@ sidebar_position: 1
1. Воспроизведите действия, создающие проблему.
-1. Save session as a .har file by clicking the **Save to disk** button (Export as HAR) on Network tab.
+1. Сохраните сессию в виде файла .har, нажав на кнопку **Сохранить на диск** (Экспортировать как HAR) во вкладке Сеть.
1. Отправьте документ поддержке AdGuard (support@adguard.com) с подробным объяснением ошибки. Дополнительные скриншоты также могут помочь.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/minidump.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/minidump.md
index e766a579c95..d76e81a48f5 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/minidump.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/minidump.md
@@ -24,7 +24,7 @@ sidebar_position: 8
:::tip
- Alternatively, click **Settings** → **System** → **About** → **Advanced system settings**.
+ Вы таежн можете перейти в **Настройки** → **Система** → **О программе** → **Дополнительные параметры системы**.
:::
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/proxy-certificate.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/proxy-certificate.md
index dd149459d1b..96f0f240aab 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/proxy-certificate.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/proxy-certificate.md
@@ -21,7 +21,7 @@ HTTP-трафик будет фильтроваться в любом случа
1. Узнайте IP-адрес вашего десктопного компьютера, на котором установлен AdGuard.
-1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. For Mac, go to **Settings** → **Preferences** → **Network** and enable **HTTP proxy**.
+1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. На Mac перейдите в **Настройки** → **Сеть** → **HTTP-прокси** и включите **Использовать AdGuard как HTTP-прокси**.
1. На том же компьютере с AdGuard перейдите по этой ссылке: [http://local.adguard.org/cert](http://local.adguard.org/cert).
@@ -63,7 +63,7 @@ HTTP-трафик будет фильтроваться в любом случа
1. Узнайте IP-адрес вашего десктопного компьютера, на котором установлен AdGuard.
-1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. For Mac, go to **Settings** → **Preferences** → **Network** and enable **HTTP proxy**.
+1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. На Mac перейдите в **Настройки** → **Сеть** → **HTTP-прокси** и включите **Использовать AdGuard как HTTP-прокси**.
1. Перейдите по этой ссылке, используя веб-браузер: [http://local.adguard.org/cert](http://local.adguard.org/cert).
@@ -95,7 +95,7 @@ HTTP-трафик будет фильтроваться в любом случа
1. Узнайте IP-адрес вашего десктопного компьютера, на котором установлен AdGuard.
-1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. For Mac, go to **Settings** → **Preferences** → **Network** and enable **HTTP proxy**.
+1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. На Mac перейдите в **Настройки** → **Сеть** → **HTTP-прокси** и включите **Использовать AdGuard как HTTP-прокси**.
1. На том же компьютере с AdGuard перейдите по этой ссылке, используя браузер: [http://local.adguard.org/cert](http://local.adguard.org/cert).
@@ -115,7 +115,7 @@ HTTP-трафик будет фильтроваться в любом случа
1. Узнайте IP-адрес вашего десктопного компьютера, на котором установлен AdGuard.
-1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. For Mac, go to **Settings** → **Preferences** → **Network** and enable **HTTP proxy**.
+1. Убедитесь, что защита AdGuard включена. На компьютере с Windows установите флажок **Использовать AdGuard как HTTP-прокси** во вкладке **Сеть** в его настройках. На Mac перейдите в **Настройки** → **Сеть** → **HTTP-прокси** и включите **Использовать AdGuard как HTTP-прокси**.
1. На том же компьютере с AdGuard перейдите по этой ссылке, используя браузер: [http://local.adguard.org/cert](http://local.adguard.org/cert).
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/report-bugs.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/report-bugs.md
index 9c294ea8265..953d914003a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/report-bugs.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/report-bugs.md
@@ -17,7 +17,7 @@ sidebar_position: 4
### Как описать проблему
-Постарайтесь предоставить как можно больше подробностей — так нам будет проще воспроизвести ошибку и понять, как её исправить. Here’s what we expect a bug report to include:
+Постарайтесь предоставить как можно больше подробностей — так нам будет проще воспроизвести ошибку и понять, как её исправить. Вот что мы ожидаем увидеть в отчёте об ошибке:
- Версия приложения
- Версия ОС
@@ -28,7 +28,7 @@ sidebar_position: 4
### Как собирать логи
-Read about collecting logs in dedicated articles for each platform.
+О сборе логов читайте в статьях для каждой платформы.
## Как голосовать за сообщения об ошибках или запросы на добавление функций
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/intro.md b/i18n/ru/docusaurus-plugin-content-docs/current/intro.md
index b932c7196de..e6be99fcc57 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard — один из лидеров на рынке программ для
Но мы также разрабатываем и поддерживаем бесплатные расширения для всех популярных браузеров:
-- [Браузерное расширение AdGuard](/adguard-browser-extension/features/filters)
+- [Браузерное расширение AdGuard](/adguard-browser-extension/availability)
- [AdGuard для Safari](/adguard-for-safari/features/general)
## Не только блокировка рекламы
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/sk/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/sk/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/intro.md b/i18n/sk/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/sl/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/sl/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/intro.md b/i18n/sl/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/sv/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/sv/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/intro.md b/i18n/sv/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/ta/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/ta/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/intro.md b/i18n/ta/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 9d3c90590fd..ff21ddef069 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ Bu makale, yalnızca tarayıcınızı koruyan AdGuard Tarayıcı Uzantısı hakk
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Kullanılabilirlik
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Kullanılabilirlik](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Kurulum
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Yükleme](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Bağımsız uygulama ile uyumluluk
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Bağımsız uygulama ile uyumluluk](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Chrome için AdGuard Tarayıcı Uzantısı MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Sorunları çözme
Bu bölümde bilinen sorunları ve olası çözümleri ele alan kılavuzlar yer almaktadır.
-[Sorunları çözme](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Bağımsız uygulamalar ile karşılaştırma
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Bağımsız uygulama ile uyumluluk](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce32dc7a14..aa9de360834 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ Safari için bağımsız bir uzantımız var. Since the release of [Safari 13](h
:::
-**Her uzantının işlevselliğinin kesinlikle tarayıcının yetenekleri ile sınırlı olduğunu unutmayın.** Bu nedenle, tam teşekküllü koruma elde etmek istiyorsanız, bilgisayarınız için bağımsız bir program kurmayı düşünün. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Her uzantının işlevselliğinin kesinlikle tarayıcının yetenekleri ile sınırlı olduğunu unutmayın.** Bu nedenle, tam teşekküllü koruma elde etmek istiyorsanız, bilgisayarınız için bağımsız bir program kurmayı düşünün. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index c49d63675f1..9f86800692e 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ Bu makale, cihazınızı sistem düzeyinde koruyan çok işlevli bir reklam enge
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 8fbcdd646a1..9cf07ad4005 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ Kullanıcı kuralları ve izin listesi kuralları her uzantıya dahildir.
## Safari için AdGuard
-*Safari için AdGuard, arama çubuğunun yanındaki AdGuard simgesini etkinleştirir. Belirli bir sitede hızlı bir şekilde koruma ayarlamak veya reklamları elle engellemek istiyorsanız kullanışlıdır. Ayrıca Safari tarafından desteklenen biçime dönüştürülmemiş gelişmiş kurallar da içerir. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*Safari için AdGuard*, arama çubuğunun yanındaki AdGuard simgesini etkinleştirir. Belirli bir sitede hızlı bir şekilde koruma ayarlamak veya reklamları elle engellemek istiyorsanız kullanışlıdır. Ayrıca Safari tarafından desteklenen biçime dönüştürülmemiş gelişmiş kurallar da içerir. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## Safari uzantıları nasıl yönetilir
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index 74624b4112c..e17dc17ba6b 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/browsing-security.md
index b4d05b4e47e..7269399d5ac 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard uyarısı](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/extensions.md
index 143620a5f96..1d905e507c6 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ Bu betik, Google arama sonuçlarındaki bağlantılardan Google'ın izleyici öz
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). tinyShield hakkında daha fazla bilgi edinin ve [GitHub'da](https://github.com/List-KR/tinyShield) nasıl yükleneceğini öğrenin.
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Lisans talep et
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+Kendi kullanıcı betiğinizi geliştiriyorsanız ve bunun AdGuard ile nasıl çalıştığını test etmek istiyorsanız, [formu](https://surveys.adguard.com/en/for_developers_request/form.html) doldurarak lisans talebinde bulunabilirsiniz.
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Kullanıcı stilleri
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Kullanıcı stilleri, kullanıcıların popüler sitelerin görünümünü değiştirmesine olanak tanır.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Kullanıcı stili adresinin yanındaki _Kopyala_ öğesine tıklayın
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Tamamlandı!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+Eğer CSS kurallarına aşinaysanız, kullanıcı stillerini kendiniz de oluşturabilirsiniz.
:::note
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/intro.md b/i18n/tr/docusaurus-plugin-content-docs/current/intro.md
index ca050310783..416d86c8107 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard, 15 yılı aşkın deneyimi, çeşitli platformlar için neredeyse onlar
Ancak tüm popüler tarayıcılar için ücretsiz tarayıcı uzantıları da geliştiriyor ve sürdürüyoruz:
-- [AdGuard Tarayıcı Uzantısı](/adguard-browser-extension/features/filters)
+- [AdGuard Tarayıcı Uzantısı](/adguard-browser-extension/availability)
- [Safari için AdGuard](/adguard-for-safari/features/general)
## Sadece reklam engelleme değil
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/uk/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/uk/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/intro.md b/i18n/uk/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/vi/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/vi/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/intro.md b/i18n/vi/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index d5ece0cb7d0..af4e9d066b8 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ sidebar_position: 1
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## 可用性
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## 安装
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## 与独立应用程序兼容
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## Chrome 版 AdGuard 浏览器扩展 MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## 解决问题
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## 与独立应用程序的比较
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 5dcd9f96be8..b897ea00846 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ sidebar_position: 2
:::
-**请记住,各种浏览器扩展的功能都严格受制于浏览器本身**。因此,如果您想获得全面的保护,还是建议安装单独的程序。 这是[有原因的](adguard-browser-extension/comparison-standalone)。
+**请记住,各种浏览器扩展的功能都严格受制于浏览器本身**。因此,如果您想获得全面的保护,还是建议安装单独的程序。 There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index 06c632fc2b4..4b3f4a51b3f 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ sidebar_position: 3
:::
-在 macOS High Sierra(或更高版本)上安装 AdGuard 时,用户可能会看到一条信息:「系统扩展已阻止」。 这是 High Sierra 中出现的一种新的安全机制,它要求用户允许安装第三方系统扩展。 要完成 AdGuard 的安装,必须在「*系统偏好设置*」→「*安全和隐私*」→「*常规*」中手动允许扩展加载。
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![在设置中允许安装扩展](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-点击「允许」按钮,之后就可以正常安装程序了。
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 5eb24a7f9e1..5aa01f323d9 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ AdGuard 使用过滤规则阻止网站上的广告、跟踪器和其他骚扰。
## AdGuard Safari版
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## 如何管理 Safari 扩展程序
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index bb19cd218b8..fc0bc94786e 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ AdGuard 有众多广告拦截服务以适用于各种平台且各产品都有独
AdGuard 用户[可以访问专门的网络报告工具](https://reports.adguard.com/new_issue.html)。 归功于用户的报告,过滤器开发者才可致力于他们的过滤器列表维护且不用刷网页寻找那些新旧未拦截的广告。
-过滤器不仅可拦截广告,还能做更多。 过滤器还可以拦截跟踪器,社交媒体小工具及其他烦人的元素,如 Cookie 通知。 不同的用户可以选择不同的过滤器组合以匹配个人首选。 不少网站,如 [filterlists.com](https://filterlists.com/),有专门的过滤器列表和巨大的数据库。
+过滤器不仅可拦截广告,还能做更多。 There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. 不同的用户可以选择不同的过滤器组合以匹配个人首选。 不少网站,如 [filterlists.com](https://filterlists.com/),有专门的过滤器列表和巨大的数据库。
我们开发并维护[自己的过滤器列表集合](../adguard-filters)以供 AdGuard 或其它广告拦截器使用。
@@ -62,3 +62,40 @@ AdGuard 用户[可以访问专门的网络报告工具](https://reports.adguard.
还有其它类型的过滤规则,但用户需要有更高级的技术知识以理解其工作方式。 如果有兴趣, [请查看相应文章](../create-own-filters)了解过滤规则的综合指南。
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/browsing-security.md
index 83e14e0ddd2..0395de7892f 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ sidebar_position: 3
AdGuard 检查页面和页面上加载的所有元素提供最佳保护。 AdGuard 使用散列前缀检查 URL 和域名,而不是完整的 URL,因此我们的服务器不会保留用户访问的网站信息,个人信息受100%的安全保护。 我们的服务器会响应 App 的查询,列出所有与散列前缀匹配的可能地址。 当根据哈希匹配检测到潜在威胁时,会立即阻止该网站。
-![DNS 警告](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### 浏览器扩展
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/extensions.md
index bc2b0a6737f..075fb549ddf 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ These userscripts are not developed by AdGuard, and therefore we can't give a 10
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### 在哪里查看更多自定义脚本{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### 申请许可证
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-要获取许可证,请发送电子邮件至 devteam@adguard.com 并附上以下信息:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### 兼容性
@@ -213,7 +205,7 @@ GM_log
## 用户样式
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. 完成!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/intro.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/intro.md
index 17e3d168662..1185884e1ff 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
但我们也为所有主流的浏览器开发和维护免费的浏览器扩展:
-- [AdGuard 浏览器扩展](/adguard-browser-extension/features/filters)
+- [AdGuard 浏览器扩展](/adguard-browser-extension/availability)
- [AdGuard Safari版](/adguard-for-safari/features/general)
## 不仅仅是广告拦截
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
index 23e23cc5a8a..bac424e587a 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/adguard-browser-extension.md
@@ -13,25 +13,25 @@ This article is about AdGuard Browser Extension, which safeguards only your brow
Here are outlined the main features and settings available in the AdGuard Browser Extension.
-[Features](/adguard-browser-extension/features/features.md)
+[Features](/adguard-browser-extension/features)
## Availability
In this article, you'll learn about the supported browsers and platforms where the extension can be installed.
-[Availability](/adguard-browser-extension/availability.md)
+[Availability](/adguard-browser-extension/availability)
## Installation
The article explains how to install the AdGuard Browser Extension on various supported browsers.
-[Installation](/adguard-browser-extension/installation.md)
+[Installation](/adguard-browser-extension/installation)
## Compatibility with the standalone app
The article explains the compatibility of the AdGuard Browser Extension with the AdGuard desktop apps.
-[Compatibility with the standalone app](adguard-browser-extension/compatibility.md)
+[Compatibility with the standalone app](/adguard-browser-extension/compatibility)
## AdGuard Browser Extension for Chrome MV3
@@ -43,16 +43,16 @@ This article discusses the AdGuard browser extension for Chrome, which is compat
The article describes how the AdGuard Browser Extension manages protected pages, restricting ad blocking on certain sensitive websites to ensure proper functionality.
-[Browser-protected pages](/adguard-browser-extension/protected-pages.md)
+[Browser-protected pages](/adguard-browser-extension/protected-pages)
## Solving problems
This section includes guides addressing known issues and possible solutions.
-[Solving problems](/adguard-browser-extension/solving-problems/solving-problems.md)
+[Solving problems](/adguard-browser-extension/solving-problems)
## Comparison to standalone apps
The article highlights the differences in functionality, coverage, and features between the AdGuard extensions and desktop apps.
-[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone.md)
+[Comparison to standalone apps](/adguard-browser-extension/comparison-standalone)
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
index 6ce884cde5f..87b903ad193 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/availability.md
@@ -23,4 +23,4 @@ We have a standalone extension for Safari. Since the release of [Safari 13](http
:::
-**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](adguard-browser-extension/comparison-standalone).
+**Do not forget that the functionality of each extension is strictly limited by the browser’s capabilities.** So if you want to get full-fledged protection, consider installing a standalone program for your computer. There's [a reason why](/adguard-browser-extension/comparison-standalone).
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
index f79e71c4433..40a680b7d1d 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/high-sierra-compatibility.md
@@ -9,8 +9,12 @@ This article is about AdGuard for Mac, a multifunctional ad blocker that protect
:::
-During the installation of AdGuard on macOS High Sierra (or later), you may see this message: "System Extension Blocked". This is a new security mechanism that appeared in High Sierra, it requires you to explicitly allow the installation of a third-party system extension. To complete the installation of AdGuard you have to manually allow loading the extension in *System Preferences* → *Security & Privacy* → *General*.
+During the installation of AdGuard on macOS High Sierra (or later), you may receive the message "System Extension Blocked". This is a new security mechanism introduced in High Sierra that requires you to explicitly allow the installation of a third-party system extension.
+
+To complete the installation of AdGuard you have to manually allow loading the extension by clicking the "Allow" button in *System Preferences* → *Security & Privacy* → *General*.
+
+On macOS Sequoia, you can do it in *System Preferences* → *Security & Privacy* → *General* → *Login Items & Extensions*. Once there, click the "i" icon next to *Network Extensions* and toggle the AdGuard option.
![Allow extension installation in settings](https://cdn.adtidy.org/public/Adguard/kb/PicturesEN/highsierra.png)
-Click the "Allow" button, and after that you will be able to proceed with the installation as normal.
+After that you will be able to proceed with the installation as usual.
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 32475928eb8..7676218771b 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ User rules and allowlist rules are included into every extension.
## AdGuard for Safari
-*AdGuard for Safari activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [Extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard for Safari* activates the AdGuard icon next to the search bar. It's useful if you want to quickly set up protection for a specific website or block ads manually. It also contains advanced rules that aren't converted to the format supported by Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
## How to manage Safari extensions
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index c53c2ee53b4..aaa6f25f30f 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -62,3 +62,40 @@ These rules are quite complicated and require the ad blocker to be granted certa
There are other types of filtering rules, but they require more advanced technical knowledge to understand how they work. If you are interested, [check out our comprehensive guide on filtering rules in the linked article](../create-own-filters).
:::
+
+## Types of request handling in AdGuard
+
+AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+
+Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+
+Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+
+### Examples of blocked requests
+
+AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+
+AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+
+### Examples of allowed requests
+
+AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+
+Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+
+Requests to websites that are added by the user to *Allowlist* are allowed.
+
+### Examples of modified requests
+
+Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+
+`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
+
+`https://www.baseballchannel.jp/npb/183688/?ref=ise` → `https://www.baseballchannel.jp/npb/183688/`
+
+`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
+
+Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+
+- something on the page is changed (usually by cosmetic rules)
+- the response is modified
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/browsing-security.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/browsing-security.md
index cb1d301b1df..49c083db6c8 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/browsing-security.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/browsing-security.md
@@ -19,7 +19,7 @@ Each time you visit a website, your local client exchanges information with our
AdGuard provides the best possible protection by inspecting both the pages and all objects loaded on them. AdGuard checks URLs and domain names using hash prefixes, not the full URLs, so our servers retain no information about the websites you visit and your personal information is completely safe. Our servers respond to the app’s query with a list of all possible addresses that match the hash prefix. When a potential threat is detected based on hash matches, access to that website is immediately blocked.
-![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png)
+![AdGuard warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/dangerous_website_blocked.png)
### In browser extensions
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/extensions.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/extensions.md
index 0cf454b4329..3dd9430ee9a 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/extensions.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/extensions.md
@@ -55,9 +55,9 @@ This script removes Google's tracking feature from the links in Google search re
Its source code is [available on GitHub](https://github.com/Rob--W/dont-track-me-google). This userscript can be downloaded from [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) and installed in any AdGuard CoreLibs-based app.
-#### microShield
+#### tinyShield
-A userscript for people visiting Korean websites and some international websites. The microShield userscript blocks Ad-Shield ads and anti-adblocks. Its original source code is available at [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) and [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about microShield and how to install it on [GitHub](https://github.com/List-KR/microShield).
+A userscript for people visiting Korean websites and some international websites. The tinyShield userscript blocks Ad-Shield ads and anti-adblocks. This userscript can be installed in AdGuard CoreLibs-based apps, Violentmonkey, Tampermonkey, and [quoid/userscripts](https://github.com/quoid/userscripts). Learn more about tinyShield and how to install it on [GitHub](https://github.com/List-KR/tinyShield).
### Where can you get more userscripts?{#more-userscripts}
@@ -89,15 +89,7 @@ If you like the idea of customizing your browser with userscripts and have quest
#### Request license
-If you are developing your own custom script and want to test how it works with AdGuard, you can request a beta license key for the app.
-
-To get it, please send an email to devteam@adguard.com with the following information:
-
-**Subject:** Userscript author license request
-
-**Body:** Please tell us about the userscripts you are working on.
-
-Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request\&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK).
+If you are developing your own userscript and want to test how it works with AdGuard, you can request a license by filling in [the form](https://surveys.adguard.com/en/for_developers_request/form.html).
#### Compatibility
@@ -213,7 +205,7 @@ GM_log
## Userstyles
-Userstyles allow users to customize their online experience. Whether you’re looking to change the appearance of a website or automate repetitive tasks, styles offer a world of possibilities.
+Userstyles allow users to change the appearance of popular websites.
AdGuard has the option to upload or create your own userstyles. This is an advanced feature, so you will need some knowledge of HTML and CSS.
@@ -231,7 +223,7 @@ You can download userstyles from various websites. One of the most popular users
1. Follow the link above and choose the userstyle you like
-2. Right-click the _Install_ button and choose _Copy Link Address_
+2. Click _Copy_ next to the userstyle address
3. Open AdGuard settings → _Extensions_
@@ -239,7 +231,7 @@ You can download userstyles from various websites. One of the most popular users
5. Done!
-If you’re familiar with CSS rules, you can also create the userstyles yourself.
+If you’re familiar with CSS rules, you can also create userstyles yourself.
:::note
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/intro.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/intro.md
index 8b3da975675..82072e5ea5c 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/intro.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/intro.md
@@ -15,7 +15,7 @@ AdGuard is one of the leaders on the market of ad-blocking software with 15+ yea
But we also develop and maintain free browser extensions for all popular browsers:
-- [AdGuard Browser Extension](/adguard-browser-extension/features/filters)
+- [AdGuard Browser Extension](/adguard-browser-extension/availability)
- [AdGuard for Safari](/adguard-for-safari/features/general)
## Not just ad blocking
From 9748cba115194f5849cec0fb558125c55b39bb23 Mon Sep 17 00:00:00 2001
From: Dasha_Bugayova
Date: Wed, 27 Nov 2024 20:37:10 +0800
Subject: [PATCH 11/15] Update Stealth Mode features' names
---
docs/general/stealth-mode.md | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/docs/general/stealth-mode.md b/docs/general/stealth-mode.md
index 1dbb2d88949..8b607a0485e 100644
--- a/docs/general/stealth-mode.md
+++ b/docs/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* on AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -98,23 +98,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
From 39b3803a961c57131f68ed24d959db1b517b7361 Mon Sep 17 00:00:00 2001
From: Dasha_Bugayova
Date: Wed, 27 Nov 2024 22:04:55 +0800
Subject: [PATCH 12/15] Update stealth-mode.md
---
docs/general/stealth-mode.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/general/stealth-mode.md b/docs/general/stealth-mode.md
index 8b607a0485e..f8a19124dab 100644
--- a/docs/general/stealth-mode.md
+++ b/docs/general/stealth-mode.md
@@ -3,7 +3,7 @@ title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* on AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
From 32e3a5572b031b11cab823779a5793d07af53259 Mon Sep 17 00:00:00 2001
From: ss-orlova <95080242+sonya-orlova@users.noreply.github.com>
Date: Thu, 28 Nov 2024 14:25:57 +0300
Subject: [PATCH 13/15] Small fix in Create own filters
---
docs/general/ad-filtering/create-own-filters.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md
index 82b23fcb8e3..be3ce99c782 100644
--- a/docs/general/ad-filtering/create-own-filters.md
+++ b/docs/general/ad-filtering/create-own-filters.md
@@ -453,7 +453,7 @@ despite the pattern `||*page` may match specific domains.
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` modifiers are not supported.
:::
From 1220c16a650c8d9ba12dcf39353d8d6cfd16ea5f Mon Sep 17 00:00:00 2001
From: Sofia Orlova <95080242+sonya-orlova@users.noreply.github.com>
Date: Thu, 28 Nov 2024 13:34:30 +0200
Subject: [PATCH 14/15] Update docs/general/ad-filtering/create-own-filters.md
Co-authored-by: Slava <45171506+slavaleleka@users.noreply.github.com>
---
docs/general/ad-filtering/create-own-filters.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md
index be3ce99c782..bc20d915ecc 100644
--- a/docs/general/ad-filtering/create-own-filters.md
+++ b/docs/general/ad-filtering/create-own-filters.md
@@ -453,7 +453,7 @@ despite the pattern `||*page` may match specific domains.
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` modifiers are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
From 67ca8ae35bacbab879963b00b848fd847ad030e2 Mon Sep 17 00:00:00 2001
From: sonya-orlova <95080242+sonya-orlova@users.noreply.github.com>
Date: Thu, 28 Nov 2024 12:06:03 +0000
Subject: [PATCH 15/15] automatically update translations
---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 3 +-
.../ad-filtering/how-ad-blocking-works.md | 34 ++++----
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../solving-problems/logcat.md | 14 +--
.../solving-problems/low-level-settings.md | 86 +++++++++----------
.../ad-filtering/create-own-filters.md | 3 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../features/features.md | 4 +-
.../features/main-menu.md | 2 +-
.../features/stealth-mode.md | 2 +-
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../adguard-for-android/installation.md | 30 +++----
.../adguard-for-mac/features/features.md | 2 +-
.../adguard-for-mac/features/stealth.md | 2 +-
.../adguard-for-windows/features/settings.md | 2 +-
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../current/adguard-for-safari/extensions.md | 2 +-
.../ad-filtering/create-own-filters.md | 28 +++---
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../ad-filtering/how-ad-blocking-works.md | 28 +++---
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../features/features.md | 8 +-
.../features/stealth-mode.md | 2 +-
.../solving-problems/solving-problems.md | 6 +-
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
.../ad-filtering/create-own-filters.md | 2 +-
.../current/general/stealth-mode.md | 24 +++---
75 files changed, 517 insertions(+), 515 deletions(-)
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/be/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/be/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/be/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/be/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/bn/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/bn/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/bn/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 502c768ba14..13b1d15fab7 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ V následujících příkladech se předpokládá, že požadavky jsou odesílá
:::caution Omezení
-V [AdGuardu pro Chrome MV3][ext-mv3] nejsou podporovány domény s `regexp` a `any_tld`.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
@@ -4771,6 +4771,7 @@ Následující skriptlety lze také použít pro účely ladění:
[ext-mv3]: #what-product "AdGuard Browser Extension for Chrome MV3"
[ext-mv3]: #what-product "Rozšíření prohlížeče AdGuard pro Chrome MV3"
[ext-mv3]: #what-product "AdGuard Browser Extension for Chrome MV3"
+[ext-mv3]: #what-product "AdGuard Browser Extension for Chrome MV3"
[ext-ff]: #what-product "AdGuard Browser Extension for Firefox"
[ios-app]: #what-product "AdGuard for iOS and AdGuard Pro for iOS"
[ios-app]: #what-product "AdGuard for iOS and AdGuard Pro for iOS"
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index d73aa0e63b6..6813b24eca7 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ A i když je pravidlo nakonec přidáno do filtru, neznamená to, že tam zůsta
Uživatelé AdGuardu [mají přístup ke speciálnímu webovému nástroji pro vytváření hlášení](https://reports.adguard.com/new_issue.html). Díky stížnostem uživatelů se mohou tvůrci filtrů soustředit na opravu svých seznamů filtrů a ne na hledání nových a starých neblokovaných reklam na internetu.
-Filtry umí více než jen blokovat reklamy. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Různí uživatelé si mohou zvolit různé kombinace filtrů podle svých osobních preferencí. Existují webové stránky jako [filterlists.com](https://filterlists.com/), které se věnují seznamům filtrů a mají obrovské databáze.
+Filtry umí více než jen blokovat reklamy. Existují filtry, které blokují sledování, widgety sociálních médií a obtěžující prvky, jako jsou upozornění na soubory cookies. Různí uživatelé si mohou zvolit různé kombinace filtrů podle svých osobních preferencí. Existují webové stránky jako [filterlists.com](https://filterlists.com/), které se věnují seznamům filtrů a mají obrovské databáze.
Vyvíjíme a spravujeme [vlastní sadu seznamů filtrů](../adguard-filters), které lze použít s AdGuardem nebo jinými blokátory reklam.
@@ -63,31 +63,31 @@ Existují i další typy pravidel filtrování, ale jejich fungování vyžaduje
:::
-## Types of request handling in AdGuard
+## Typy požadavků zpracovaných AdGuardem
-AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+AdGuard zpracovává požadavky podle filtrů, uživatelských pravidel a nastavení povolených uživatelem. Výsledkem je, že požadavek může být zablokován, upraven, povolen, nebo pokud se s ním nic nedělá, pouze zpracován.
-Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
+Podrobné informace o tom, jak AdGuard zpracoval každý váš požadavek, najdete v *Záznamu filtrování* (AdGuard pro Windows, AdGuard pro Mac, Rozšíření prohlížeče AdGuard) nebo *Nedávná aktivita* (AdGuard pro iOS, AdGuard pro Android).
-Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+Pokud jde o filtry AdGuardu, můžete se také podívat na [naše zásady filtrování](../filter-policy), kde je podrobně popsáno, co a proč jednotlivé filtry blokují.
-### Examples of blocked requests
+### Příklady blokovaných požadavků
-AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+Filtr AdGuard DNS blokuje požadavky na reklamní domény, například `ad.doubleclick.net`.
-AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+Filtr AdGuard Ochrana před sledováním blokuje požadavky na sledování, jako jsou `youtube.com/youtubei/log_event?`.
-### Examples of allowed requests
+### Příklady povolených požadavků
-AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+Základní filtr AdGuardu povoluje požadavky jiné než reklamní, například `www.google.com/complete/search?q=`.
-Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
+Filtr odblokování reklam ve vyhledávání a vlastní propagace povoluje požadavky o vyhledávání v doménách souvisejících s reklamami, jako je `www.google.com/aclk?`.
-Requests to websites that are added by the user to *Allowlist* are allowed.
+Požadavky na webové stránky, které uživatel přidal do *seznamu povolených*, jsou povoleny.
-### Examples of modified requests
+### Příklady modifikovaných požadavků
-Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+Funkce ochrany proti sledování s úrovní ochrany nastavenou na *Vysoká* povoluje filtr AdGuard Filtr sledování URL, který upravuje požadavky tím, že z nich odstraňuje parametry sledování:
`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
@@ -95,7 +95,7 @@ Tracking protection feature with protection level set to *High* enables AdGuard
`https://www.gog.com/game/spec_ops_the_line?pp=2863d7ae605104eeef364e3f164d3404e20f680c&gad_source=1` → `https://www.gog.com/game/spec_ops_the_line`
-Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
+Vezměte prosím na vědomí, že *modifikované* události, které vidíte v záznamu filtrování nebo v seznamu nedávných aktivit, se týkají nejen případů, kdy je požadavek změněn, ale také případů, kdy:
-- something on the page is changed (usually by cosmetic rules)
-- the response is modified
+- se něco na stránce změní (obvykle podle kosmetických pravidel)
+- je odezva modifikována
diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/cs/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 1d964a61034..7114cdb7932 100644
--- a/i18n/cs/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/cs/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Režim utajení
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Mnoho webových stránek shromažďuje informace o svých návštěvnících, například jejich IP adresu, nainstalovaný prohlížeč a operační systém, rozlišení obrazovky a dokonce i stránku, ze které byl návštěvník přesměrován. Některé webové stránky používají soubory cookies k označení prohlížeče a uložení vašich osobních nastavení, uživatelských preferencí nebo k vašemu "rozpoznání" při příští návštěvě. Režim utajení chrání vaše osobní údaje před takovými systémy sběru dat a statistik.
+Mnoho webových stránek shromažďuje informace o svých návštěvnících, například jejich IP adresu, nainstalovaný prohlížeč a operační systém, rozlišení obrazovky a dokonce i stránku, ze které byl návštěvník přesměrován. Některé webové stránky používají soubory cookies k označení prohlížeče a uložení vašich osobních nastavení, uživatelských preferencí nebo k vašemu "rozpoznání" při příští návštěvě. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
Práci Režimu utajení můžete flexibilně upravit: můžete například zakázat webové stránce přijímat požadavky na vyhledávání, které jste použili k jejímu nalezení na internetu, automaticky odstranit soubory cookies třetích stran i vlastní soubory cookies webové stránky, vypnout sdílení zeměpisné polohy prohlížeče, které lze použít ke sledování vaší polohy a skrýt svou skutečnou IP adresu nebo ji dokonce nahradit libovolnou adresou.
@@ -17,21 +17,21 @@ Některé možnosti nemusí být v závislosti na konkrétním produktu dostupn
## Obecné {#general}
-### Skrýt vyhledávací dotazy {#searchqueries}
+### Hide search queries {#searchqueries}
Když jste přesměrováni na webovou stránku z vyhledávače Google, Yahoo nebo jiného vyhledávače, tato možnost skryje vyhledávací dotaz, který jste použili k nalezení dané webové stránky.
-### Požádat webové stránky, aby vás nesledovaly {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Odesílá webovým stránkám, které jste navštívili signály [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) a [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track).
-### Odebrat sledovací parametry z URL
+### Remove tracking parameters from URLs {#removetracking}
Pokud tuto možnost povolíte, AdGuard odstraní z adres URL parametry sledování, jako je `utm_*` a `fb_ref`.
### Metody sledování {#tracking-methods}
-### Automatické odstranění cookies třetích stran {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Webové stránky používají soubory cookies k ukládání vašich informací a preferencí, jako je zvolený jazyk, vaše poloha nebo seznam položek v nákupním košíku. Když se vrátíte na webovou stránku, váš prohlížeč odešle zpět soubory cookies patřící dané webové stránce, což mu umožní "zapamatovat si" vaše údaje.
@@ -45,7 +45,7 @@ Toto nastavení odstraní všechny soubory cookies třetích stran, včetně inf
:::
-### Automatické odstranění cookies aktuální stránky {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Nastavte dobu (v minutách), po jejímž uplynutí budou všechny soubory vlastních cookies zničeny. Pro úplné zablokování nastavte časovač na 0.
@@ -55,7 +55,7 @@ Tuto možnost nedoporučujeme povolovat, protože může vážně narušit prác
:::
-### Zakázat mezipaměť požadavků třetích stran {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
Když prohlížeč osloví stránku, server jí přiřadí značku ETag. Značka ETag používá prohlížeč k ukládání obsahu stránky do mezipaměti. Při dalších požadavcích prohlížeč odešle ETag příslušnému serveru, čímž mu umožní zjistit identitu návštěvníka. Dokud jsou soubory webu uloženy v mezipaměti, je značka ETag odesílána pokaždé, když se váš prohlížeč obrátí na tento web. Pokud je na webu vložen obsah z jiného serveru (například obrázek nebo iframe), může tento server sledovat vaše aktivity bez vašeho vědomí.
@@ -97,23 +97,23 @@ Všimněte si, že aby bylo možné filtrovat provoz, aplikace AdGuard "zachycuj
Naopak, vzhledem k povaze všech rozšíření prohlížeče funguje Rozšíření prohlížeče AdGuard "uvnitř" prohlížeče. Hned na místě změní referenční ID, takže nástroje pro vývojáře budou zobrazovat požadované referenční ID pro vaše požadavky.
-### Skrýt User-Agent {#useragent}
+### Hide User-Agent {#useragent}
Když navštívíte webovou stránku, váš prohlížeč odešle své informace na server. Vypadá jako textový řádek, který je součástí požadavku HTTP začínajícího slovy "User-Agent:". Obvykle obsahuje název a verzi prohlížeče, operační systém a nastavení jazyka. Omezili jsme User-Agent od identifikačních údajů, aby jej inzerenti nemohli získat.
Můžete také nastavit libovolnou hodnotu User-Agent zadáním do pole Vlastní User-Agent. Chcete-li použít User-Agent, ponechte pole prázdné.
-### Skrýt IP adresu {#ip}
+### Mask IP address {#ip}
Režim utajení nemůže skrýt vaši IP adresu. Můžeme ji však skrýt, takže navštívené webové stránky si budou myslet, že jste proxy server. Někdy to pomůže a webové stránky vaši skutečnou IP adresu ignorují.
Můžete nastavit libovolnou IP adresu, kterou chcete, aby ostatní vnímali jako vaši, a to tak, že ji jednoduše zadáte do příslušného pole. Chcete-li použít výchozí IP adresu, ponechte pole prázdné.
-### Odstranit záhlaví X-Client-Data z požadavků HTTP {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Zakazuje prohlížeči Google Chrome odesílat informace o verzi a modifikaci s požadavky na domény Google (včetně DoubleClick a Google Analytics).
-### Ochrana před DPI {#dpi}
+### Protect against DPI {#dpi}
Deep Packet Inspection je systém hloubkové analýzy a filtrování provozu podle obsahu paketů a shromažďování statistických údajů. Pomocí této technologie mají poskytovatelé internetových služeb možnost kontrolovat procházející provoz a omezovat přístup k obsahu pro své klienty.
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/da/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/da/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/da/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/da/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md
index 2097cba4549..307acd6ec76 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md
@@ -11,7 +11,7 @@ Dieser Artikel behandelt AdGuard für Android, einem multifunktionalen Werbebloc
:::note
-Die in den Protokollen enthaltenen Daten und/oder Dateien werden in Übereinstimmung mit der [Datenschutzrichtlinie von AdGuard](https://adguard.com/de/privacy.html) verarbeitet.
+Die in den Protokollen enthaltenen Daten und Dateien werden in Übereinstimmung mit der C:\Program Files\platform-tools\logs.txt`
- Senden Sie die erstellte `TXT`-Datei sowie die Zeit, zu der das Problem reproduziert wurde (aus Teil 2), per E-Mail an unser Support-Team unter support@adguard.com.
+ Senden Sie die erstellte `txt`-Datei sowie die Zeit, zu der das Problem reproduziert wurde (aus Teil 2), per E-Mail an unser Support-Team unter support@adguard.com.
-### Alternative way for ROOT users
+### Alternative Möglichkeit für gerootete Geräte
1. Laden Sie [Logcat](https://play.google.com/store/apps/details?id=com.pluscubed.matlog) herunter und führen Sie es aus.
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md
index 26a3f1a0cbe..54e22b6ddbc 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md
@@ -1,5 +1,5 @@
---
-title: Leitfaden für Low-Level-Einstellungen
+title: Low-Level-Einstellungen
sidebar_position: 6
---
@@ -21,29 +21,29 @@ Um zu den *Low-Level-Einstellungen* zu gelangen, öffnen Sie die AdGuard-App und
## Low-Level-Einstellungen
-For AdGuard v4.0 for Android we've completely redesigned the low-level settings: divided them into thematic blocks, made them clearer, added validation of entered values and other safety valves, got rid of some settings, and added others.
+Für AdGuard v4.0 für Android haben wir die Low-Level-Einstellungen komplett überarbeitet. Wir haben sie in thematische Blöcke unterteilt, sie übersichtlicher gestaltet, eine Validierung der eingegebenen Werte und andere Sicherheitsvorkehrungen hinzugefügt, einige Einstellungen gestrichen und andere hinzugefügt.
### DNS-Schutz
#### Fallback-Upstreams
-Here you can specify the fallback DNS resolver(s) to be used if the configured server is unavailable. There are three options: *Automatic DNS*, *None*, and *Custom DNS*. If no fallback server is specified, the *Automatic DNS* — the system DNS or AdGuard DNS — will be used. *None* means no fallback at all. Selecting *Custom DNS* allows you to list IPv4 and IPv6 server addresses to use as upstreams.
+Hier können Sie die Fallback-DNS-Auflöser angeben, die verwendet werden sollen, wenn der konfigurierte Server nicht verfügbar ist. Es gibt drei Optionen: *Automatischer DNS*, *Keine* und *Benutzerdefinierter DNS*. Wenn kein Fallback-Server angegeben ist, wird *Automatischer DNS* verwendet— der System-DNS-Server oder AdGuard DNS-Server. *Keine* bedeutet, dass überhaupt kein Fallback erfolgt. Wenn Sie *Benutzerdefinierter DNS* wählen, können Sie IPv4- und IPv6-Serveradressen auflisten, die als Upstreams verwendet werden sollen.
#### Fallback-Domains
-Here you can list domains that will be forwarded directly to fallback upstreams if they exist.
+Hier können Sie Domains auflisten, die direkt an Fallback-Upstreams weitergeleitet werden, sofern diese vorhanden sind.
#### Suchdomains erkennen
-If this setting is enabled, AdGuard will detect search domains and automatically forward them to fallback upstreams.
+Wenn diese Einstellung aktiviert ist, erkennt AdGuard Suchdomains und leitet sie automatisch an Fallback-Upstreams weiter.
#### Bootstrap-Upstreams
-Bootstrap DNS für DoH-, DoT- und DoQ-Server. The *Automatic DNS* — the system DNS or AdGuard DNS — is used by default. By selecting *Custom DNS*, you can list IPv4 and IPv6 server addresses to use as bootstrap upstreams.
+Bootstrap DNS für DoH-, DoT- und DoQ-Server. Standardmäßig *Automatischer DNS* verwendet — der System-DNS oder AdGuard DNS. Wenn Sie *Benutzerdefinierter DNS* wählen, können Sie IPv4- und IPv6-Serveradressen auflisten, die als Bootstrap-Upstreams verwendet werden sollen.
-#### Sperrmodus für Regeln im Adblock-Stil
+#### Sperrmodus für Adblock-Regeln
-Here you can specify the response type for domains blocked by DNS rules based on adblock rule syntax (for instance, `||example.org^`).
+Hier können Sie den Antworttyp für Domains angeben, die von DNS-Regeln basierend auf der Syntax der Adblock-Regel gesperrt werden (z. B. `||example.org^`).
- Mit REFUSED antworten
- Mit NXDOMAIN antworten
@@ -59,11 +59,11 @@ Here you can specify the response type for domains blocked by DNS rules based on
#### Zeitüberschreitung bei DNS-Anfragen
-Hier können Sie die Zeit in Millisekunden angeben, die AdGuard auf die Antwort des ausgewählten DNS-Servers warten soll, bevor er auf den Fallback zurückgreift. Wenn Sie dieses Feld nicht ausfüllen oder einen ungültigen Wert eingeben, wird der Wert von 5.000 verwendet.
+Hier können Sie die Zeit in Millisekunden angeben, die AdGuard auf die Antwort des ausgewählten DNS-Servers warten soll, bevor er auf den Fallback zurückgreift. Wenn Sie dieses Feld nicht ausfüllen oder einen ungültigen Wert eingeben, wird der Wert von 5000 verwendet.
#### Gültigkeitsdauer der blockierten Antwort
-Hier können Sie den TTL-Wert (Time to Live) angeben, der als Antwort auf eine blockierte Anfrage zurückgegeben wird.
+Hier können Sie den TTL-Wert (Gültigkeitsdauer) angeben, der als Antwort auf eine blockierte Anfrage zurückgegeben wird.
#### Größe des DNS-Cache
@@ -71,15 +71,15 @@ Hier können Sie die maximale Anzahl der zwischengespeicherten Antworten angeben
#### ECH-Sperrung
-Wenn diese Option aktiviert ist, entfernt der AdGuard die Parameter von Encrypted Client Hello aus den DNS-Antworten.
+Wenn diese Option aktiviert ist, entfernt AdGuard die Parameter von Encrypted Client Hello aus den DNS-Antworten.
#### Nicht verfügbare ausgehende Proxys ignorieren
-If this setting is enabled, AdGuard will send DNS requests directly when the outbound proxy is unavailable.
+Wenn diese Einstellung aktiviert ist, sendet AdGuard DNS-Anfragen direkt, wenn der Outbound-Proxy nicht verfügbar ist.
-#### Try HTTP/3 for DNS-over-HTTPS upstreams
+#### HTTP/3 für DNS-over-HTTPS-Upstreams versuchen
-If this setting is enabled, AdGuard will use HTTP/3 to speed up DNS query resolution for DoH upstreams. Otherwise, AdGuard will revert to its default behavior and use HTTP/2 to send all DNS requests for DNS-over-HTTPS.
+Wenn diese Einstellung aktiviert ist, verwendet AdGuard HTTP/3, um das Auflösen von DNS-Anfragen für DoH-Upstreams zu beschleunigen. Andernfalls kehrt AdGuard zu seinem Standardverhalten zurück und verwendet HTTP/2, um alle DNS-Anfragen für DNS-over-HTTPS zu senden.
#### SERVFAIL-Ausfallreaktion
@@ -87,7 +87,7 @@ Wenn diese Einstellung aktiviert ist und alle Upstreams (einschließlich der Fal
#### Fallback für Domains ohne Fallback verwenden
-Wenn diese Einstellung aktiviert ist, verwendet AdGuard Fallback-Upstreams für alle Domains. Andernfalls werden Fallback-Upstreams nur für Fallback-Domains und Such-Domains verwendet, wenn die entsprechende Option aktiviert ist.
+Wenn diese Einstellung aktiviert ist, verwendet AdGuard Fallback-Upstreams für alle Domains. Andernfalls werden Fallback-Upstreams nur für Fallback-Domains und Suchdomains verwendet, wenn die entsprechende Option aktiviert ist.
#### DNS-Upstreams überprüfen
@@ -95,51 +95,51 @@ Wenn diese Einstellung aktiviert ist, testet AdGuard DNS-Upstreams, bevor benutz
#### Verschlüsselte DNS-Anfragen filtern
-If this setting is on, AdGuard will apply all enabled DNS filters and DNS user rules to encrypted DNS-over-HTTPS (DoH) traffic and not only to plain DNS. DoH traffic mostly comes from Chrome and other browsers that have a *Secure DNS* (or similar) setting. You can use *Filter secure DNS* in two different modes:
+Wenn diese Einstellung aktiviert ist, wendet AdGuard alle aktivierten DNS-Filter und DNS-Benutzerregeln auf verschlüsselten DNS-over-HTTPS (DoH)-Verkehr an und nicht nur auf unverschlüsselte DNS. Der DoH-Datenverkehr kommt hauptsächlich von Chrome und anderen Browsern, die die Einstellung *Secure DNS* (oder ähnlich) haben. Sie können *Verschlüsselte DNS-Anfragen filtern* in zwei verschiedenen Modi verwenden:
-- **Filter on the fly**. In this mode, AdGuard applies all enabled DNS filters and DNS user rules to DoH traffic but doesn’t redirect it to the local DNS proxy. If a DNS server is specified in the browser’s settings, this server will handle the DoH traffic for this browser
+- **Filtern in Echtzeit**. In diesem Modus wendet AdGuard alle aktivierten DNS-Filter und DNS-Benutzerregeln auf den DoH-Datenverkehr an, leitet ihn aber nicht an den lokalen DNS-Proxy um. Wenn in den Browsereinstellungen ein DNS-Server angegeben ist, wird dieser Server den DoH-Verkehr für diesen Browser verarbeiten
-- **Redirect to DNS proxy**. In this mode, AdGuard applies all enabled DNS filters and DNS user rules to DoH traffic by redirecting it to the local DNS proxy. The DNS server specified in the AdGuard’s DNS settings will handle all DoH traffic
+- **Zum DNS-Proxy umleiten**. In diesem Modus wendet AdGuard alle aktivierten DNS-Filter und DNS-Benutzerregeln auf den DoH-Datenverkehr an, indem er ihn an den lokalen DNS-Proxy umleitet. Der DNS-Server, der in den AdGuard-Einstellungen angegeben ist, wird den gesamten DoH-Datenverkehr übernehmen
### Filterung
#### HAR erfassen
-Wenn diese Einstellung aktiviert ist, werden HAR-Dateien von AdGuard erfasst. It will create a directory named “har” inside the app cache directory and add there information about all filtered HTTP requests in HAR 1.2 format that can be analyzed with the Fiddler program.
+Wenn diese Einstellung aktiviert ist, werden HAR-Dateien von AdGuard erfasst. Es wird ein Ordner namens „har“ innerhalb des App-Cache-Verzeichnisses erstellt und dort Informationen über alle gefilterten HTTP-Anfragen im HAR 1.2-Format hinzugefügt, die mit dem Programm „Fiddler“ analysiert werden können.
-Use it only for debugging purposes!
+Verwenden Sie es nur zur Fehlersuche!
### HTTPS-Filterung
#### Encrypted Client Hello
-Jede verschlüsselte Internetverbindung hat einen unverschlüsselten Teil. Dies ist das allererste Paket, das den Namen des Servers enthält, mit dem Sie sich verbinden. Die verschlüsselte Client-Hallo-Technologie soll dieses Problem lösen und das letzte bisschen an unverschlüsselter Information verschlüsseln. Um davon zu profitieren, aktivieren Sie die Option *Encrypted ClientHello*. Sie verwendet einen lokalen DNS-Proxy, um nach der ECH-Konfiguration für die Domain zu suchen. Wenn es gefunden wird, wird das Client Hello-Paket verschlüsselt.
+Jede verschlüsselte Internetverbindung hat einen unverschlüsselten Teil. Dies ist das allererste Paket, das den Namen des Servers enthält, mit dem Sie sich verbinden. Die Encrypted Client Hello-Technologie soll dieses Problem lösen und das letzte bisschen unverschlüsselter Informationen verschlüsseln. Um davon zu profitieren, aktivieren Sie die Option *Encrypted Client Hello*. Sie verwendet einen lokalen DNS-Proxy, um nach der ECH-Konfiguration für die Domain zu suchen. Wenn es gefunden wird, wird das Client Hello-Paket verschlüsselt.
#### OCSP-Prüfung
-If this setting is enabled, AdGuard will perform asynchronous OCSP checks to get the revocation status of a website's SSL certificate.
+Wenn diese Einstellung aktiviert ist, führt AdGuard asynchrone OCSP-Prüfungen durch, um den Widerrufsstatus des SSL-Zertifikats einer Website zu ermitteln.
-If an OCSP check is completed within the required timeout, AdGuard will immediately block the connection if the certificate is revoked or establish the connection if the certificate is valid.
+Wird eine OCSP-Prüfung innerhalb der geforderten Zeitspanne abgeschlossen, sperrt AdGuard die Verbindung sofort, wenn das Zertifikat widerrufen wurde, oder baut die Verbindung auf, wenn das Zertifikat gültig ist.
-If the verification takes too long, AdGuard will allow the connection while continuing to check the certificate status in the background. Wird das Zertifikat widerrufen, werden aktuelle und zukünftige Verbindungen zu der Domain gesperrt.
+Wenn die Überprüfung zu lange dauert, lässt AdGuard die Verbindung zu, während der Zertifikatsstatus im Hintergrund weiter überprüft wird. Wird das Zertifikat widerrufen, werden aktuelle und zukünftige Verbindungen zu der Domain gesperrt.
#### Redirect DNS-over-HTTPS requests
-If this setting is enabled, AdGuard will redirect DNS-over-HTTPS requests to the local DNS proxy in addition to plain DNS requests. We recommend disabling fallback upstreams and using only encrypted DNS servers to maintain privacy.
+If this setting is enabled, AdGuard will redirect DNS-over-HTTPS requests to the local DNS proxy in addition to plain DNS requests. Wir empfehlen, Fallback-Upstreams zu deaktivieren und nur verschlüsselte DNS-Server zu verwenden, um die Privatsphäre zu wahren.
#### HTTP/3 filtern
-If this setting is enabled, AdGuard will filter requests sent over HTTP/3 in addition to other request types.
+Ist diese Einstellung aktiviert, filtert AdGuard zusätzlich zu den anderen Anfragetypen auch Anfragen, die über HTTP/3 gesendet werden.
-### Ausgehender Proxy
+### Outbound-Proxy
-#### Show the Filter DNS requests setting
+#### Einstellung „DNS-Anfragen filtern“ anzeigen
-If this is enabled, the *Filter DNS requests* switch will be displayed in the *Add proxy server* dialog. Use it to enable filtering of DNS requests passing through the specified proxy.
+Wenn dies aktiviert ist, wird der Schalter *DNS-Anfragen filtern* im Dialog *Proxy-Server hinzufügen* angezeigt. Use it to enable filtering of DNS requests passing through the specified proxy.
### Schutz
-#### Port-Bereiche
+#### Portbereiche
Hier können Sie Portbereiche angeben, die gefiltert werden sollen.
@@ -147,19 +147,19 @@ Hier können Sie Portbereiche angeben, die gefiltert werden sollen.
Wenn diese Einstellung aktiviert ist, zeichnet AdGuard gesperrte HTML-Elemente in *Letzte Aktivität* auf.
-#### Fehlersuche im Scriptlet
+#### Scriptlet-Debugging
-If this setting is enabled, debugging in scriptlets will be activated, and the browser log will record when scriptlet rules are applied.
+Wenn diese Einstellung aktiviert ist, wird das Debugging in Scriptlets aktiviert, und das Browserprotokoll zeichnet auf, wenn Scriptlet-Regeln angewendet werden.
#### Ausgeschlossene Apps
-Here you can list package names and UIDs that you want to exclude from AdGuard protection.
+Hier können Sie Paketnamen und UIDs auflisten, die Sie vom AdGuard-Schutz ausschließen möchten.
#### QUIC-Bypass-Pakete
Hier können Sie Paketnamen angeben, für die AdGuard den QUIC-Verkehr umgehen soll.
-#### Automatischer Proxy bei Netzwerkänderungen neu konfigurieren
+#### Automatischen Proxy bei Netzwerkänderungen neu konfigurieren
Wenn diese Einstellung aktiviert ist, wird der AdGuard-Schutz neu gestartet, um die automatischen Proxy-Einstellungen neu zu konfigurieren, wenn sich Ihr Gerät mit einem anderen Netzwerk verbindet. Diese Einstellung gilt nur, wenn *Routing-Modus* auf *Automatischer Proxy* eingestellt ist.
@@ -169,11 +169,11 @@ Wenn diese Einstellung aktiviert ist, filtert AdGuard IPv6-Netzwerke, wenn eine
#### Von der Filterung ausgeschlossene IPv4-Bereiche
-Das Filtern für die in diesem Abschnitt aufgeführten IPv4-Bereiche ist deaktiviert.
+Die Filterung für die in diesem Abschnitt aufgeführten IPv4-Bereiche ist deaktiviert.
#### Von der Filterung ausgeschlossene IPv6-Bereiche
-Das Filtern für die in diesem Abschnitt aufgeführten IPv6-Bereiche ist deaktiviert.
+Die Filterung für die in diesem Abschnitt aufgeführten IPv6-Bereiche ist deaktiviert.
#### TCP-Keepalive für ausgehende Sockets
@@ -181,7 +181,7 @@ Wenn diese Einstellung aktiviert ist, sendet AdGuard nach der angegebenen Zeitsp
Nach einer vom System festgelegten Anzahl erfolgloser Versuche, eine Antwort vom Server zu erhalten, schließt das System automatisch die TCP-Verbindung.
-### Lokale VPN-Einstellungen
+### Einstellungen des lokalen VPN
#### Recovery delay for revoked VPN
@@ -191,15 +191,15 @@ Hier können Sie eine Verzögerungszeit in Millisekunden festlegen, bevor AdGuar
Here you can set the time of a delay in milliseconds before AdGuard reschedules the restoration of VPN protection after it has been revoked by a third-party VPN app or by deleting the VPN profile. Der Standardwert ist 5000 ms.
-#### MTU (Maximale Übertragungseinheit)
+#### MTU
Hier können Sie die maximale Übertragungseinheit (MTU) der VPN-Schnittstelle einstellen. Der empfohlene Bereich liegt bei 1500-1900 Bytes.
#### VPN automatisch wiederherstellen
-If this setting is enabled, AdGuard’s local VPN will be automatically re-enabled after being turned off due to network absence, tethering, or low-power mode.
+Wenn diese Einstellung aktiviert ist, wird das lokale VPN von AdGuard automatisch wieder aktiviert, nachdem es aufgrund von Netzwerkabwesenheit, Tethering oder Energiesparmodus ausgeschaltet wurde.
-#### Paket-Erfassung (PCAP)
+#### Paketerfassung (PCAP)
Wenn diese Einstellung aktiviert ist, erstellt AdGuard eine Datei `timestamp.pcap` (z.B. 1682599851461.pcap) im App-Cache-Verzeichnis. Diese Datei listet alle durch das VPN übertragenen Netzwerkpakete auf und kann mit dem Programm Wireshark analysiert werden.
@@ -211,11 +211,11 @@ Wenn diese Einstellung aktiviert ist, werden die IP-Adressen des Gateways zu den
Hier können Sie die IP-Adresse eingeben, die für die Erstellung einer TUN-Schnittstelle verwendet werden soll. Standardmäßig ist dies `172.18.11.218`.
-#### Forcibly route LAN IPv4
+#### LAN-IPv4 zwangsweise weiterleiten
-If this setting is enabled, AdGuard will filter all LAN connections, including local IPv4 network traffic, even if the *Route all LAN IPv4 connections* option is enabled.
+Wenn diese Einstellung aktiviert ist, filtert AdGuard alle LAN-Verbindungen, einschließlich des lokalen IPv4-Netzwerkverkehrs, auch wenn die Option *Alle LAN-IPv4-Verbindungen weiterleiten* aktiviert ist.
-#### Route all LAN IPv4 connections
+#### Alle LAN-IPv4-Verbindungen weiterleiten
If this setting is enabled, AdGuard will exclude LAN connections from filtering for simple networks. This may not work for complex networks. This setting only applies if *Forcibly route LAN IPv4* is disabled.
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 8223b7d7f73..6f7489ae014 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In den folgenden Beispielen wird davon ausgegangen, dass die Anfragen von `http:
:::caution Beschränkungen
-In [AdGuard für Chrome MV3][ext-mv3] werden `regexp` und `any_tld domains` nicht unterstützt.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
@@ -4765,7 +4765,6 @@ The following scriptlets also may be used for debug purposes:
[ext-chr]: #what-product "AdGuard Browsererweiterung für Chrome und andere Chromium-basierte Browser"
[ext-mv3]: #what-product "AdGuard Browsererweiterung für Chrome MV3"
[ext-mv3]: #what-product "AdGuard Browser Extension for Chrome MV3"
-[ext-mv3]: #what-product "AdGuard Browser Extension for Chrome MV3"
[ext-ff]: #what-product "AdGuard Browsererweiterung für Firefox"
[ext-ff]: #what-product "AdGuard Erweiterung für Firefox"
[ext-ff]: #what-product "AdGuard Browsererweiterung für Mozilla Firefox"
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index cca8a6a5ed0..73cca48b83e 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Tracking-Schutz (Privatsphäre)
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Viele Websites sammeln Informationen über ihre Besucher, z. B. ihre IP-Adresse, den installierten Browser und das Betriebssystem, die Bildschirmauflösung und sogar die Seite, von der ein Besucher weitergeleitet wurde. Einige Webseiten verwenden Cookies, um Ihren Browser zu kennzeichnen und Ihre persönlichen Einstellungen und Präferenzen zu speichern oder um Sie bei Ihrem nächsten Besuch „wiederzuerkennen”. Der Stealth-Modus schützt Ihre persönlichen Informationen vor solchen daten- und statistiksammelnden Systemen.
+Viele Websites sammeln Informationen über ihre Besucher, z. B. ihre IP-Adresse, den installierten Browser und das Betriebssystem, die Bildschirmauflösung und sogar die Seite, von der ein Besucher weitergeleitet wurde. Einige Webseiten verwenden Cookies, um Ihren Browser zu kennzeichnen und Ihre persönlichen Einstellungen und Präferenzen zu speichern oder um Sie bei Ihrem nächsten Besuch „wiederzuerkennen”. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
Sie können die Funktionsweise des Stealth-Modus flexibel anpassen: Sie können z. B. verhindern, dass die Website die Suchanfrage erhält, mit der Sie sie im Internet gefunden haben, Sie können sowohl Cookies von Drittanbietern als auch eigene Cookies der Website automatisch löschen, Sie können die gemeinsame Nutzung der Geolokalisierung durch den Browser deaktivieren, die dazu verwendet werden kann, Ihren Aufenthaltsort zu verfolgen, und Sie können Ihre wahre IP-Adresse verbergen oder sie sogar durch eine beliebige ersetzen.
@@ -17,21 +17,21 @@ Einige Optionen sind je nach Produkt aufgrund des Betriebssystems oder anderer E
## Allgemein {#general}
-### Eigene Suchanfragen verbergen {#searchqueries}
+### Hide search queries {#searchqueries}
Wenn Sie von Google, Yahoo oder einer anderen Suchmaschine auf eine Website weitergeleitet werden, blendet diese Option die Suchanfrage aus, mit der Sie die Website gefunden haben.
-### Websites bitten, Sie nicht zu verfolgen {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sendet die Nachricht [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) und [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) an die Websites, die Sie besuchen.
-### Entfernen von Tracking-Parametern aus URLs
+### Remove tracking parameters from URLs {#removetracking}
Wenn Sie diese Option aktivieren, entfernt AdGuard Tracking-Parameter wie `utm_*` und `fb_ref` aus den URLs der Seiten.
### Tracking-Methoden {#tracking-methods}
-### Selbstzerstörung von Drittanbieter-Cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites verwenden Cookies, um Ihre Informationen und Präferenzen zu speichern, z. B. die von Ihnen gewählte Sprache, Ihren Standort oder die Liste der Artikel in Ihrem Einkaufswagen. Wenn Sie auf eine Website zurückkehren, sendet Ihr Browser die zu dieser Website gehörenden Cookies zurück, so dass er sich Ihre Daten „merken” kann.
@@ -45,7 +45,7 @@ Diese Einstellung löscht alle Cookies von Drittanbietern, einschließlich der I
:::
-### Selbstzerstörung der Cookies von Erstanbietern {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Legen Sie eine Zeitspanne (in Minuten) fest, nach deren Ablauf alle Cookies gelöscht werden sollen. Stellen Sie den Timer auf 0 (Null), um sie vollständig zu sperren.
@@ -55,7 +55,7 @@ Wir raten davon ab, diese Option zu aktivieren, da sie die Arbeit bestimmter Web
:::
-### Cache für Drittanbieter-Anfragen deaktivieren {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
Wenn ein Browser eine Seite aufruft, weist der Server dieser Seite einen ETag zu. Dieser ETag wird vom Browser verwendet, um den Inhalt der Seite zwischenzuspeichern. Bei nachfolgenden Anfragen sendet der Browser den ETag an den entsprechenden Server, so dass der Server die Identität des Besuchers erfährt. Solange die Dateien der Website im Cache gespeichert sind, wird der ETag jedes Mal gesendet, wenn Ihr Browser diese Website aufruft. Wenn auf der Website Inhalte von einem anderen Server eingebettet sind (z. B. ein Bild oder ein iFrame), kann dieser Server Ihre Aktivitäten ohne Ihr Wissen verfolgen.
@@ -97,23 +97,23 @@ Beachten Sie, dass AdGuard-Anwendungen Browser-zu-Server-Anfragen „abfangen”
Andererseits arbeitet die AdGuard Browsererweiterung aufgrund der Natur aller Browsererweiterungen „innerhalb“ des Browsers. Dadurch wird der Referer auf der Stelle geändert, so dass die Entwicklertools den gewünschten Referer für Ihre Anfragen anzeigen.
-### Browserkennung verbergen {#useragent}
+### Hide User-Agent {#useragent}
Wenn Sie eine Website besuchen, sendet Ihr Browser seine Informationen an den Server. Sie sieht aus wie eine Textzeile, die Teil einer HTTP-Anfrage ist und mit „User-Agent:” beginnt. Sie enthält in der Regel den Namen und die Version des Browsers, das Betriebssystem und die Spracheinstellungen. Wir trennen den User-Agent (Browserkennung) von identifizierenden Informationen, so dass Werbetreibende ihn nicht erhalten können.
Sie können auch einen beliebigen Wert für die Browserkennung festlegen, indem Sie ihn in das Feld Benutzerdefinierter User Agent eingeben. Um die Standard-Browserkennung zu verwenden, lassen Sie das Feld leer.
-### Eigene IP-Adresse verbergen {#ip}
+### Mask IP address {#ip}
Der Stealth-Modus kann Ihre IP-Adresse nicht verbergen. Wir können sie jedoch verbergen, so dass die von Ihnen besuchten Websites annehmen, dass Sie ein Proxy sind. Manchmal hilft das, und Websites ignorieren Ihre wahre IP-Adresse.
Sie können eine beliebige IP-Adresse festlegen, die andere als Ihre wahrnehmen sollen, indem Sie sie einfach in das entsprechende Feld eingeben. Um die Standard-IP-Adresse zu verwenden, lassen Sie das Feld leer.
-### X-Client-Data-Header aus HTTP-Anfragen entfernen {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Es verbietet Google Chrome, seine Versions- und Änderungsinformationen bei Anfragen an Google-Domains (einschließlich „Double Click” und „Google Analytics”) zu senden.
-### Schutz vor DPI (Deep Packet Inspection) {#dpi}
+### Protect against DPI {#dpi}
Bei der Deep Packet Inspection handelt es sich um ein System zur Tiefenanalyse und Filterung des Datenverkehrs nach Paketinhalt sowie zur Sammlung statistischer Daten. Mit dieser Technologie können Internetanbieter den Datenverkehr kontrollieren und den Zugang zu Inhalten für ihre Kunden beschränken.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index c1da5b98034..70cd93bdc2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/es/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 6082ddc18f6..ddfbc8144fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Modo sigiloso
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Muchos sitios web recopilan información sobre sus visitantes, como su dirección IP, navegador y sistema operativo instalados, resolución de pantalla e incluso la página desde la que se redirige al visitante. Algunas páginas web utilizan cookies para marcar tu navegador y guardar tus configuraciones y preferencias personales, o para "reconocerte" en tu próxima visita. El modo oculto protege tu información personal de sistemas de recopilación de datos y estadísticas.
+Muchos sitios web recopilan información sobre sus visitantes, como su dirección IP, navegador y sistema operativo instalados, resolución de pantalla e incluso la página desde la que se redirige al visitante. Algunas páginas web utilizan cookies para marcar tu navegador y guardar tus configuraciones y preferencias personales, o para "reconocerte" en tu próxima visita. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
Puedes ajustar de manera flexible el trabajo del Modo sigiloso: por ejemplo, puedes prohibir que el sitio web reciba la solicitud de búsqueda que utilizaste para encontrarlo en Internet, eliminar automáticamente tanto las cookies de terceros como las propias del sitio web, desactivar el uso compartido de geolocalización del navegador que puede usarse para rastrear tu ubicación, y ocultar tu verdadera Dirección IP o incluso reemplazarla por una arbitraria.
@@ -17,21 +17,21 @@ Es posible que algunas opciones no estén disponibles según el producto en part
## General {#general}
-### Ocultar tus consultas de búsqueda {#searchqueries}
+### Hide search queries {#searchqueries}
Cuando Google, Yahoo o cualquier otro motor de búsqueda te dirigen a un sitio web, esta opción oculta la consulta de búsqueda que utilizaste para encontrar ese sitio web.
-### Pedir a los sitios web que no te rastreen {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Envía las señales [Control de privacidad global](https://globalprivacycontrol.org/#gpc-spec) y [No rastrear](https://en.wikipedia.org/wiki/Do_Not_Track) a los sitios web que visitas.
-### Eliminar los parámetros de seguimiento de las URL
+### Remove tracking parameters from URLs {#removetracking}
Si habilitas esta opción, AdGuard eliminará parámetros de seguimiento como `utm_*` y `fb_ref` de las URL de las páginas.
### Métodos de seguimiento {#tracking-methods}
-### Autodestrucción de cookies de terceros {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Los sitios web utilizan cookies para almacenar tu información y preferencias, como el idioma que seleccionaste, tu ubicación o la lista de artículos en tu carrito de compras. Cuando regresas a un sitio web, tu navegador devuelve las cookies pertenecientes a ese sitio web, lo que te permite "recordar" tus datos.
@@ -45,7 +45,7 @@ Esta configuración elimina todas las cookies de terceros, incluida la informaci
:::
-### Autodestrucción de cookies de origen {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Establece un período de tiempo (en minutos) al final del cual se destruirán todas las cookies. Pon el temporizador en 0 para bloquearlos por completo.
@@ -55,7 +55,7 @@ No recomendamos habilitar esta opción ya que puede interferir gravemente con el
:::
-### Desactivar caché para solicitudes de terceros {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
Cuando un navegador accede a una página, el servidor asigna una ETag a esa página. El navegador utiliza esta ETag para almacenar en caché el contenido de la página. Tras solicitudes posteriores, el navegador envía la ETag al servidor correspondiente, permitiendo así que el servidor conozca la identidad del visitante. Siempre que los archivos del sitio estén almacenados en caché, la ETag se envía cada vez que tu navegador accede a este sitio. Si el sitio tiene contenido incrustado de otro servidor (como una imagen o un iframe), ese servidor puede rastrear tus actividades sin tu conocimiento.
@@ -97,23 +97,23 @@ Ten en cuenta que para poder filtrar el tráfico, las aplicaciones AdGuard "inte
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. Modificará el Referer en ese mismo momento, por lo que Developer Tools mostrará el Referer deseado para tus peticiones.
-### Ocultar tu User-Agent {#useragent}
+### Hide User-Agent {#useragent}
Cuando visitas un sitio web, tu navegador envía tu información al servidor. Parece una línea de texto que forma parte de una petición HTTP que comienza con "User-Agent:". Suele incluir el nombre y la versión del navegador, el sistema operativo y la configuración del idioma. Eliminamos la información de identificación del User-Agent para que los anunciantes no puedan obtenerla.
También puedes establecer un valor arbitrario para el User-Agent ingresándolo en el campo User-Agent personalizado. Para utilizar el User-Agent predeterminado, deja el campo en blanco.
-### Enmascarar tu dirección IP {#ip}
+### Mask IP address {#ip}
El modo sigiloso no puede ocultar tu dirección IP. Sin embargo, podemos ocultarlo para que los sitios web que visite piensen que eres un proxy. A veces esto ayuda y los sitios web ignoran tu verdadera dirección IP.
Puedes establecer una dirección IP arbitraria, que te gustaría que otros perciban como tuya, simplemente introduciéndola en el campo correspondiente. Para utilizar la dirección IP predeterminada, deja el campo en blanco.
-### Eliminar encabezado X-Client-Data de las peticiones HTTP {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Prohíbe a Google Chrome enviar su versión y información de modificación con solicitudes a dominios de Google (incluidos Double Click y Google Analytics).
-### Proteger de DPI {#dpi}
+### Protect against DPI {#dpi}
Deep Packet Inspection es un sistema de análisis profundo y filtrado de tráfico por contenido de paquetes, así como de acumulación de datos estadísticos. Al utilizar esta tecnología, los ISP tienen la capacidad de controlar el tráfico que pasa por ello y limitar el acceso al contenido para sus clientes.
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/fa/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/fa/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/fa/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/fi/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/fi/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/fi/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
index c9f705cc34f..1ad36da3612 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
@@ -9,7 +9,7 @@ Cet article concerne l'extension de navigateur AdGuard, qui protège uniquement
:::
-## Main menu
+## Menu principal
The article explains the main functions on the pop-up, such as enabling or disabling ad blocking, accessing settings, managing filters, and viewing protection statistics.
@@ -21,7 +21,7 @@ The article describes how AdGuard Browser Extension allows you to customize ad b
[Filters](/adguard-browser-extension/features/filters.md)
-## Tracking protection (Stealth Mode)
+## Protection contre le suivi (Mode furtif)
The article explains how this feature enhances privacy by blocking online trackers, hiding user information, and preventing third-party data collection.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md
index b3ce079c480..7cf33381932 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/main-menu.md
@@ -1,5 +1,5 @@
---
-title: Main menu
+title: Menu principal
sidebar_position: 1
---
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
index f7ed710c3f0..a4d07a64436 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
@@ -1,5 +1,5 @@
---
-title: Tracking protection (Stealth Mode)
+title: Protection contre le suivi (Mode furtif)
sidebar_position: 3
---
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 12a3630bb7a..ad6795ec0c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/fr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index d9809a95b38..b540a0fe92f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Mode furtif
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-De nombreux sites web recueillent des informations sur leurs visiteurs, telles que leur adresse IP, le navigateur et le système d'exploitation installés, la résolution de l'écran et même la page à partir de laquelle le visiteur a été redirigé. Certaines pages web utilisent des cookies pour marquer votre navigateur et enregistrer vos paramètres personnels et vos préférences, ou pour vous "reconnaître" lors de votre prochaine visite. Le mode furtif protège vos informations personnelles de ces systèmes de collecte de données et de statistiques.
+De nombreux sites web recueillent des informations sur leurs visiteurs, telles que leur adresse IP, le navigateur et le système d'exploitation installés, la résolution de l'écran et même la page à partir de laquelle le visiteur a été redirigé. Certaines pages web utilisent des cookies pour marquer votre navigateur et enregistrer vos paramètres personnels et vos préférences, ou pour vous "reconnaître" lors de votre prochaine visite. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
Vous pouvez adapter le fonctionnement du mode furtif de manière flexible : par exemple, vous pouvez interdire au site web de recevoir la requête de recherche que vous avez utilisée pour le trouver sur Internet, supprimer automatiquement les cookies de tiers et ceux du site web, désactiver le partage de la géolocalisation du navigateur qui peut être utilisé pour suivre vos déplacements, et masquer votre véritable adresse IP ou même la remplacer par une adresse arbitraire.
@@ -17,21 +17,21 @@ Certaines options peuvent ne pas être disponibles en fonction du produit partic
## Général {#general}
-### Masquez vos requêtes de recherche {#searchqueries}
+### Hide search queries {#searchqueries}
Lorsque vous êtes redirigé vers un site web par Google, Yahoo ou tout autre moteur de recherche, cette option masque la requête de recherche que vous avez utilisée pour trouver ce site web.
-### Demandez aux sites web de ne pas vous suivre {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Envoie les signaux [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) et [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) aux sites web que vous visitez.
-### Retirez les paramètres de suivi des URL
+### Remove tracking parameters from URLs {#removetracking}
Si vous activez cette option, AdGuard supprimera les paramètres de suivi tels que `utm_*` et `fb_ref` des URL des pages.
### Méthodes de suivi {#tracking-methods}
-### Autodéstruction des cookies tiers {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Les sites web utilisent des cookies pour stocker vos informations et vos préférences, telles que la langue que vous avez sélectionnée, votre localisation ou la liste des articles de votre panier d'achat. Lorsque vous revenez sur un site web, votre navigateur renvoie les cookies appartenant à ce site, ce qui lui permet de "mémoriser" vos données.
@@ -45,7 +45,7 @@ Ce paramètre supprime tous les cookies de tiers, y compris les informations rel
:::
-### Autodestruction des cookies propriétaires {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Définissez une période de temps (en minutes) au terme de laquelle tous les cookies seront détruits. Réglez la minuterie sur 0 pour les bloquer complètement.
@@ -55,7 +55,7 @@ Nous vous déconseillons d'activer cette option car elle pourrait gravement inte
:::
-### Désactivation du cache pour les requêtes des tiers {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
Lorsqu'un navigateur accède à une page, le serveur lui attribue un ETag. Cet ETag est utilisé par le navigateur pour mettre en cache le contenu de la page. Lors de requêtes ultérieures, le navigateur envoie l'ETag au serveur correspondant, permettant ainsi au serveur de connaître l'identité du visiteur. Tant que les fichiers du site sont mis en cache, l'ETag est envoyé à chaque fois que votre navigateur accède à ce site. Si le site intègre du contenu provenant d'un autre serveur (comme une image ou une iframe), ce serveur peut suivre vos activités à votre insu.
@@ -97,23 +97,23 @@ Notez que pour pouvoir filtrer le trafic, les applications AdGuard "interceptent
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. Elle modifiera le référent à ce moment précis, de sorte que les outils de développeur afficheront le référent souhaité pour vos demandes.
-### Masquer votre agent utilisateur {#useragent}
+### Hide User-Agent {#useragent}
Lorsque vous visitez un site web, votre navigateur envoie ses informations au serveur. Il s’agit d’une ligne de texte qui fait partie d’une requête HTTP commençant par "User-Agent :". Il s’agit généralement du nom et de la version du navigateur, du système d’exploitation et des paramètres de langue. Nous empêchons l'agent-utilisateur d'identifier les informations pour que les annonceurs ne puissent pas les obtenir.
Vous pouvez également définir une valeur arbitraire pour l'agent-utilisateur en la saisissant dans le champ Agent-utilisateur personnalisé . Pour utiliser l'agent-utilisateur par défaut, laissez le champ vide.
-### Masquer votre adresse IP {#ip}
+### Mask IP address {#ip}
Le mode furtif ne peut pas masquer votre adresse IP. Cependant, nous pouvons le dissimuler pour faire de sorte que les sites web que vous visitez pensent que vous êtes un proxy. Parfois, cette méthode aide et les sites web ignorent votre véritable adresse IP.
Vous pouvez définir une adresse IP arbitraire, que vous souhaiteriez que les autres perçoivent comme la vôtre, en la saisissant simplement dans le champ correspondant. Pour utiliser l'adresse IP par défaut, laissez le champ vide.
-### Retirer l'en-tête X-Client-Data des requêtes HTTP {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Il interdit à Google Chrome d'envoyer ses informations de version et de modification avec les demandes adressées aux domaines de Google (y compris Double Click et Google Analytics).
-### Protection anti-IPP {#dpi}
+### Protect against DPI {#dpi}
L’inspection approfondie des paquets ou IPP est un système d’analyse et de filtrage approfondis du trafic par contenu des paquets, ainsi que l’accumulation de données statistiques. Grâce à cette technologie, les FAI ont la possibilité de contrôler le trafic passant et de limiter l'accès au contenu pour leurs clients.
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/hr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/hr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/hr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 61930b903a0..9e8d3e8eec6 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/hu/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 0aebc8d7fd7..eb3fda86f21 100644
--- a/i18n/hu/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/hu/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 60ca8b4ab62..653b4022775 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/it/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/it/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 6c164885f40..4b4df893978 100644
--- a/i18n/it/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/it/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Modalità Invisibilità
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Molti siti web raccolgono informazioni sui propri visitatori, quali il loro indirizzo IP, browser e sistema operativo installati, risoluzione dello schermo e persino la pagina da cui un visitatore è stato reindirizzato. Alcune pagine web utilizzano i cookie per contrassegnare il tuo browser e salvare le tue impostazioni personali e preferenze o per "riconoscerti" alla tua visita successiva. La Modalità Invisibilità salvaguarda le tue informazioni personali da tali sistemi di raccolta di dati e statistiche.
+Molti siti web raccolgono informazioni sui propri visitatori, quali il loro indirizzo IP, browser e sistema operativo installati, risoluzione dello schermo e persino la pagina da cui un visitatore è stato reindirizzato. Alcune pagine web utilizzano i cookie per contrassegnare il tuo browser e salvare le tue impostazioni personali e preferenze o per "riconoscerti" alla tua visita successiva. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
Puoi regolare in modo flessibile il funzionamento della Modalità Invisibilità: ad esempio, puoi impedire al sito web di ricevere la richiesta di ricerca che hai utilizzato per trovarlo su Internet, eliminare automaticamente i cookie di terze parti, disattivare la condivisione della posizione del browser, utilizzabile per tracciare la tua posizione e nascondere il tuo vero indirizzo IP o persino sostituirlo con uno arbitrario.
@@ -17,21 +17,21 @@ Alcune opzioni potrebbero non essere disponibili a seconda del prodotto specific
## Generali {#general}
-### Nascondi le tue richieste di ricerca {#searchqueries}
+### Hide search queries {#searchqueries}
Quando vieni diretto a un sito web da Google, Yahoo o qualsiasi altro motore di ricerca, quest'opzione nasconde la richiesta di ricerca che hai utilizzato per trovare quel sito web.
-### Chiedi ai siti web di non tracciarti {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Invia i segnali di [Controllo Globale della Privacy](https://globalprivacycontrol.org/#gpc-spec) e [Non Tracciare](https://en.wikipedia.org/wiki/Do_Not_Track) ai siti web che visiti.
-### Elimina i parametri di tracciamento dagli URL
+### Remove tracking parameters from URLs {#removetracking}
Se abiliti quest'opzione, AdGuard eliminerà i parametri di tracciamento come `utm_*` e `fb_ref` dagli URL delle pagine.
### Metodi di tracciamento {#tracking-methods}
-### Autodistruzione dei cookie di terze parti {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
I siti web utilizzano i cookie per memorizzare le tue informazioni e preferenze, quali la lingua selezionata, la tua posizione o l'elenco di articoli nel tuo carrello. Quando torni su un sito web, il tuo browser reinvia i cookie a esso appartenenti, che gli consentono di "ricordare" i tuoi dati.
@@ -45,7 +45,7 @@ Quest'impostazione elimina tutti i cookie di terze parti, incluse le informazion
:::
-### Autodistruzione dei cookie proprietari {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Imposta un periodo di tempo (in minuti), al termine di cui saranno distrutti tutti i cookie. Imposta il timer a 0 per bloccarli completamente.
@@ -55,7 +55,7 @@ Sconsigliamo di abilitae quest'opzione, poiché potrebbe interferire gravemente
:::
-### Disabilita la cache per le richieste di terze parti {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
Quando un browser indirizza una pagina, il server gli assegna un ETag. Questo, è utilizzato dal browser per salvare i contenuti della pagina nella cache. Alle successive richieste, il browser invia l'ETag al server corrispondente, dunque, consentendogli di imparare l'identità del visitatore. Finché i file dei siti sono nella cache, l'ETag è inviato ogni volta che il tuo browser accede a questo sito. Se il sito ha dei contenuti incorporati da un altro server (come un'immagine o un iframe), quel server può tracciare le tue attività a tua insaputa.
@@ -97,23 +97,23 @@ Tieni presente che per poter filtrare il traffico, le applicazioni AdGuard "inte
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. Altererà il Referente in quel momento, quindi, gli Strumenti per Sviluppatori mostreranno il Referente desiderato per le tue richieste.
-### Nascondi il tuo User-Agent {#useragent}
+### Hide User-Agent {#useragent}
Quando visiti un sito web, il tuo browser invia le sue informazioni al server. Somiglia a una riga di testo, parte di una richiesta HTTP, che inizia per "User-Agent:". Solitamente, include il nome e la versione del browser, il sistema operativo e le impostazioni della lingua. Escludiamo l'User-Agent dalle informazioni identificative, così che gli inserzionisti non le possano ottenere.
Inoltre, puoi impostare un valore arbitrario per l'User-Agent, inserendolo nel campo User-Agent Personalizzato. Per utilizzare l'User-Agent predefinito, lascia vuoto il campo.
-### Nascondi il tuo indirizzo IP {#ip}
+### Mask IP address {#ip}
La Modalità Invisibilità non può nascondere il tuo indirizzo IP. Tuttavia, possiamo nasconderlo così che i siti web che visiti penseranno che tu sia un proxy. Ciò, talvolta, aiuta e i siti web ignorano il tuo indirizzo IP reale.
Puoi impostare un indirizzo IP arbitrario, che vorresti fosse percepito dagli altri come tuo, semplicemente inserendolo nel campo corrispondente. Per utilizzare l'indirizzo IP predefinito, lascia vuoto il campo.
-### Rimuovi l'intestazione X-Client-Data dalle richieste HTTP {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Proibisce a Google Chrome di inviare le proprie informazioni sulla versione e sulle modifiche, con richieste ai domini di Google (inclusi Double Click e Google Analytics).
-### Protezione da IPP {#dpi}
+### Protect against DPI {#dpi}
L'Ispezione Approfondita del Pacchetto è un sistema di analisi profonda e filtraggio del traffico per contenuto del pacchetto, nonché l'accumulo di dati statistici. Utilizzando questa tecnologia, gli ISP possono controllare il traffico in transito e limitare i contenuti per i loro clienti.
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 3304fedfa1a..eb9202d24be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/ja/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 90f8913b35c..560169960a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: ステルスモード
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## 一般 {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 2123b303202..89585ccbc5d 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/ko/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 0687cc47064..15341f15d0d 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: 스텔스 모드
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-많은 웹사이트는 방문자의 IP 주소, 설치된 브라우저 및 운영 체제, 화면 해상도, 심지어 방문자가 리디렉션된 페이지 등 방문자에 대한 정보를 수집합니다. 일부 웹 페이지에서는 쿠키를 사용하여 브라우저를 표시하고 개인 설정 및 환경설정을 저장하거나 다음 방문 시 사용자를 '인식'합니다. 스텔스 모드는 이러한 데이터 및 통계 수집 시스템으로부터 개인 정보를 보호합니다.
+많은 웹사이트는 방문자의 IP 주소, 설치된 브라우저 및 운영 체제, 화면 해상도, 심지어 방문자가 리디렉션된 페이지 등 방문자에 대한 정보를 수집합니다. 일부 웹 페이지에서는 쿠키를 사용하여 브라우저를 표시하고 개인 설정 및 환경설정을 저장하거나 다음 방문 시 사용자를 '인식'합니다. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
스텔스 모드의 작업을 유연하게 조정할 수 있습니다. 예를 들어 인터넷에서 웹사이트를 찾는 데 사용한 검색 요청을 웹사이트가 수신하지 못하도록 하고, 타사 쿠키와 웹사이트 자체 쿠키를 모두 자동으로 삭제하고, 내 위치를 추적하는 데 사용할 수 있는 브라우저 지리적 위치 공유를 끄고, 실제 IP 주소를 숨기거나 임의의 주소로 대체할 수도 있습니다.
@@ -17,21 +17,21 @@ sidebar_position: 4
## 일반 {#general}
-### 검색어 숨기기 {#searchqueries}
+### Hide search queries {#searchqueries}
Google, Yahoo 또는 기타 검색 엔진에서 웹사이트로 이동하는 경우 이 옵션은 해당 웹사이트를 찾는 데 사용한 검색어를 숨깁니다.
-### 웹사이트에 추적하지 않도록 요청하기 {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
방문하는 웹사이트에 [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) 및 [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) 요청을 보냅니다.
-### URL에서 추적 매개변수 제거
+### Remove tracking parameters from URLs {#removetracking}
이 옵션을 활성화하면 AdGuard는 페이지의 URL에서 `utm_*` 및 `fb_ref와` 같은 추적 매개변수를 제거합니다.
### 추적 방법 {#tracking-methods}
-### 타사 쿠키의 자체 파기 {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
웹사이트는 쿠키를 사용하여 사용자가 선택한 언어, 위치, 장바구니의 품목 목록 등 사용자의 정보와 기본 설정을 저장합니다. 웹사이트에 다시 방문하면 브라우저는 해당 웹사이트에 속한 쿠키를 다시 전송하여 사용자의 데이터를 기억할 수 있습니다.
@@ -45,7 +45,7 @@ Google, Yahoo 또는 기타 검색 엔진에서 웹사이트로 이동하는 경
:::
-### 자사 쿠키의 자체 파괴 {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
모든 쿠키가 삭제되는 기간(분 단위)을 설정합니다. 완전히 차단하려면 타이머를 0으로 설정합니다.
@@ -55,7 +55,7 @@ Google, Yahoo 또는 기타 검색 엔진에서 웹사이트로 이동하는 경
:::
-### 타사 요청에 대한 캐시 비활성화 {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
브라우저가 페이지 주소를 지정하면 서버는 해당 페이지에 ETag를 할당합니다. 이 ETag는 브라우저에서 페이지의 콘텐츠를 캐시하는 데 사용됩니다. 후속 요청 시 브라우저는 해당 서버로 ETag를 전송하여 서버가 방문자의 신원을 파악할 수 있도록 합니다. 사이트의 파일이 캐시되어 있는 한, 브라우저에서 이 사이트를 주소 지정할 때마다 ETag가 전송됩니다. 사이트에 다른 서버의 콘텐츠(예: 이미지 또는 iframe)가 포함된 경우 해당 서버는 사용자 모르게 사용자의 활동을 추적할 수 있습니다.
@@ -97,23 +97,23 @@ The Flash Player plugin has become increasingly vulnerable to such online threat
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. 그러면 바로 그 자리에서 Referer가 변경되므로 개발자 도구는 귀하의 요청에 대해 원하는 Referer를 표시합니다.
-### User Agent 숨기기 {#useragent}
+### Hide User-Agent {#useragent}
웹사이트를 방문하면 브라우저가 해당 정보를 서버로 전송합니다. 'User-Agent:'로 시작하는 HTTP 요청의 일부인 텍스트 줄처럼 보입니다. 일반적으로 브라우저의 이름과 버전, 운영 체제 및 언어 설정이 포함됩니다. 우리는 광고주가 정보를 얻을 수 없도록 User Agent를 식별 정보에서 제외했습니다.
Custom User Agent 필드에 User Agent 값을 입력하여 임의의 값을 설정할 수도 있습니다. 기본 User Agent를 사용하려면 필드를 비워 두세요.
-### IP 주소 숨기기 {#ip}
+### Mask IP address {#ip}
스텔스 모드에서는 IP 주소를 숨길 수 없습니다. 그러나 방문하는 웹사이트가 귀하를 프록시로 인식하도록 숨길 수 있습니다. 이 방법이 도움이 될 때도 있지만 웹사이트는 실제 IP 주소를 무시합니다.
다른 사람이 내 IP 주소로 인식하도록 하려면 해당 필드에 입력하기만 하면 임의의 IP 주소를 설정할 수 있습니다. 기본 IP 주소를 사용하려면 이 필드를 비워둡니다.
-### HTTP 요청으로 부터 X-Client-Data 헤더를 제거 {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
이는 Google Chrome이 Google 도메인(Double Click 및 Google Analytics 포함)에 대한 요청과 함께 버전 및 수정 정보를 보내는 것을 금지합니다.
-### DPI로부터 보호 {#dpi}
+### Protect against DPI {#dpi}
심층 패킷 검사는 패킷 내용별로 트래픽을 심층 분석 및 필터링하고 통계 데이터를 축적하는 시스템입니다. ISP는 이 기술을 사용하여 통과하는 트래픽을 제어하고 클라이언트의 콘텐츠 액세스를 제한할 수 있습니다.
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/nl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/nl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/nl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/no/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/no/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/no/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/no/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/pl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/pl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/pl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/installation.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/installation.md
index 4044ee9b8f6..17db528fcda 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/installation.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/installation.md
@@ -11,39 +11,39 @@ Este artigo é sobre o AdGuard para Android, um bloqueador de anúncios multifun
## Requisitos do sistema
-**OS version:** Android 7.0 or higher
+**Versão do OS:** Android **7,0** ou superior
**RAM:** pelo menos 2 GB
-**Free disk space:** 500 MB
+**Espaço livre em disco:** 500 MB
## Instalação
-Most Android-based apps are distributed via Google Play; however, AdGuard is not presented there, because Google prohibits distribution of network-level ad blockers via Google Play, i.e. apps that block commercials in other apps. You will find more information about Google restrictive policy [in our blog](https://adguard.com/blog/adguard-google-play-removal.html).
+A maioria dos aplicativos baseados em Android é distribuída via Google Play; no entanto, o AdGuard não está presente lá, porque o Google proíbe a distribuição de bloqueadores de anúncio em nível de rede via Google Play, ou seja, aplicativos que bloqueiam publicidade em outros aplicativos. Você encontrará mais informações sobre a política restritiva do Google [em nosso blog](https://adguard.com/blog/adguard-google-play-removal.html).
-That’s why you can only install AdGuard for Android manually. To use the app on your mobile device, you will need to do the following.
+É por isso que você só pode instalar o AdGuard para Android manualmente. Para usar o aplicativo em seu dispositivo móvel, você precisará fazer o seguinte:
-1. **Download the app on your device**. Here are a few ways you can do this:
+1. **Baixe o aplicativo em seu dispositivo**. Aqui estão algumas maneiras de fazer isso:
- - head over to [our website](https://adguard.com/adguard-android/overview.html) and tap the *Download* button
- - start the browser and type in the following URL: [https://adguard.com/apk](https://adguard.com/apk)
- - or scan this QR code:
+ - vá para [nosso site](https://adguard.com/adguard-android/overview.html) e toque no botão *Baixar*
+ - inicie o navegador e digite o seguinte URL: [https://adguard.com/apk](https://adguard.com/apk)
+ - ou escaneie este QR code:
![QR code *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst-qr-en-1.png)
-1. **Allow installing apps from unknown sources**. Once the file download is complete, tap *Open* in the notification.
+1. **Permitir a instalação de aplicativos de fontes desconhecidas**. Uma vez que o download do arquivo estiver completo, toque em *Abrir* na notificação.
- ![Installing apps from unknown sources *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst_1.png)
+ ![Instalando aplicativos de fontes desconhecidas *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst_1.png)
- A popup will appear. Tap *Settings*, navigate to *Install unknown apps*, and grant permission for the browser you've used to download the file.
+ Um pop-up aparecerá. Toque em *Configurações*, navegue até *Instalar aplicativos desconhecidos*, e permita a permissão para o navegador que você usou para baixar o arquivo.
- ![Installing apps from unknown sources *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst_3.png)
+ ![Instalando aplicativos de fontes desconhecidas *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst_3.png)
-1. **Install the app**. Once the browser has obtained the necessary permissions, the system will ask you if you want to install the AdGuard app. Tap *Install*.
+1. **Instale o aplicativo**. Uma vez que o navegador obteve as permissões necessárias, o sistema perguntará se você deseja instalar o aplicativo. Toque em *Instalar*.
- ![Installing apps from unknown sources *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst_4.png)
+ ![Instalando aplicativos de fontes desconhecidas *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/inst_4.png)
- You will then be asked to read AdGuard's *License agreement* and *Privacy policy*. You can also participate in product development. To do this, check the boxes for *Send crash reports automatically* and *Send technical and interaction data*. Then tap *Continue*.
+ Em seguida, você será convidado a ler o *Contrato de licença* e a *Política de privacidade* do AdGuard. Você também pode participar do desenvolvimento de produtos. To do this, check the boxes for *Send crash reports automatically* and *Send technical and interaction data*. Then tap *Continue*.
![Privacy policy *mobile_border](https://cdn.adtidy.org/content/kb/ad_blocker/android/installation/fl_3.png)
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md
index e71419087fe..3d7d28c955a 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/features.md
@@ -33,7 +33,7 @@ Here you can find the DNS protection settings: available providers, filters, Blo
[DNS](/adguard-for-mac/features/dns.md)
-## Modo invisível
+## Modo Stealth
[Stealth Mode](/adguard-for-mac/features/stealth.md)
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md
index caf9f09e524..45f92510c5b 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/features/stealth.md
@@ -1,5 +1,5 @@
---
-title: Modo invisível
+title: Modo Stealth
sidebar_position: 6
---
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md
index 59d977d45d1..e28457ed4ba 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md
@@ -40,7 +40,7 @@ No módulo Bloqueador de anuncios, você pode:
Antes de começar a escrever manualmente suas próprias regras, leia nosso [guia de sintaxe](/general/ad-filtering/create-own-filters) detalhado.
-### Modo invisível
+### Modo Stealth
Muitos sites coletam informações sobre seus visitantes, como endereços IP, informações sobre o navegador e sistema operacional instalado, resolução de tela e até mesmo de qual página o usuário veio ou foi redirecionado. Algumas páginas da web usam cookies para marcar o navegador e salvar suas configurações pessoais, preferências de usuário ou “reconhecê-lo” em sua próxima visita. O Modo Sigiloso protege suas informações pessoais desses sistemas de coleta de dados e estatísticas.
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index ded2de5f8f5..5360833f1fa 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 95c1dfe57a2..77c799d338f 100644
--- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Modo invisível
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Muitos sites coletam informações sobre seus visitantes, como endereço IP, navegador instalado e sistema operacional, resolução de tela e até mesmo a página da qual o visitante foi redirecionado. Algumas páginas web utilizam cookies para marcar o seu navegador e guardar as suas configurações e preferências pessoais, ou para “reconhecê-lo” na sua próxima visita. O Modo Sigiloso protege suas informações pessoais desses sistemas de coleta de dados e estatísticas.
+Muitos sites coletam informações sobre seus visitantes, como endereço IP, navegador instalado e sistema operacional, resolução de tela e até mesmo a página da qual o visitante foi redirecionado. Algumas páginas web utilizam cookies para marcar o seu navegador e guardar as suas configurações e preferências pessoais, ou para “reconhecê-lo” na sua próxima visita. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
Você pode ajustar de forma flexível o funcionamento do Modo Sigiloso: por exemplo, você pode proibir o site de receber a solicitação de pesquisa que você usou para encontrá-lo na Internet, excluir automaticamente os cookies de terceiros e do próprio site, desativar o compartilhamento de geolocalização do navegador que pode ser usado para rastrear seu paradeiro e ocultar seu verdadeiro endereço IP ou até mesmo substituí-lo por um aleatório.
@@ -17,21 +17,21 @@ Algumas opções podem não estar disponíveis dependendo do produto específico
## Geral {#general}
-### Ocultar suas consultas de pesquisa {#searchqueries}
+### Hide search queries {#searchqueries}
Quando você é direcionado para um site do Google, Yahoo ou qualquer outro mecanismo de busca, esta opção oculta a consulta de pesquisa usada para encontrar esse site.
-### Pedir aos sites que não te rastreiem {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Envia os sinais [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) e [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) para os sites que você visita.
-### Retirar parâmetros de rastreamento de URLs
+### Remove tracking parameters from URLs {#removetracking}
Se você ativar esta opção, o AdGuard removerá parâmetros de rastreamento como `utm_*` e `fb_ref` dos URLs das páginas.
### Métodos de rastreamento {#tracking-methods}
-### Autodestruição de cookies de terceiros {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Os sites usam cookies para armazenar suas informações e preferências, como o idioma selecionado, sua localização ou a lista de itens em seu carrinho de compras. Quando você retorna a um site, seu navegador envia de volta os cookies pertencentes a esse site, o que permite “lembrar” seus dados.
@@ -45,7 +45,7 @@ Esta configuração exclui todos os cookies de terceiros, incluindo as informaç
:::
-### Autodestruição de cookies primários {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Defina um período de tempo (em minutos) ao final do qual todos os cookies serão destruídos. Defina o cronômetro para 0 para bloqueá-los completamente.
@@ -55,7 +55,7 @@ Não recomendamos ativar esta opção, pois pode interferir gravemente no funcio
:::
-### Desativar cache para solicitações de terceiros {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
Quando um navegador acessa uma página, o servidor atribui uma ETag a essa página. Esta ETag é usada pelo navegador para armazenar em cache o conteúdo da página. Nas solicitações subsequentes, o navegador envia a ETag ao servidor correspondente, permitindo assim que o servidor conheça a identidade do visitante. Enquanto os arquivos do site estiverem armazenados em cache, a ETag será enviada sempre que seu navegador acessar este site. Se o site tiver conteúdo incorporado de outro servidor (como uma imagem ou iframe), esse servidor poderá rastrear suas atividades sem o seu conhecimento.
@@ -97,23 +97,23 @@ Observe que, para poder filtrar o tráfego, os aplicativos AdGuard "interceptam"
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. Ela alterará o Referer ali mesmo, então as Ferramentas do Desenvolvedor mostrarão o Referer desejado para suas solicitações.
-### Ocultar seu agente de usuário {#useragent}
+### Hide User-Agent {#useragent}
Quando você visita um site, seu navegador envia suas informações para o servidor. Sua aparência é uma linha de texto que faz parte de uma solicitação HTTP que começa com "User-Agent:". Geralmente, inclui o nome e a versão do navegador, o sistema operacional e as configurações de idioma. Impedimos que o User-Agent identifique informações para que os anunciantes não possam obtê-las.
Você também pode definir um valor arbitrário para o User-Agent inserindo-o no campo User-Agent Personalizado. Para usar o User-Agent padrão, deixe o campo em branco.
-### Ocultar seu endereço de IP {#ip}
+### Mask IP address {#ip}
O modo furtivo não pode ocultar seu endereço IP. No entanto, podemos ocultá-lo para que os sites que você visita pensem que você é um proxy. Às vezes isso ajuda e os sites ignoram seu verdadeiro endereço IP.
Você pode definir um endereço IP arbitrário, que gostaria que outras pessoas considerassem seu, simplesmente inserindo-o no campo correspondente. Para usar o endereço IP padrão, deixe o campo em branco.
-### Remover cabeçalho X-Client-Data de solicitações HTTP {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Proíbe o Google Chrome de enviar sua versão e informações de modificação com solicitações para domínios do Google (incluindo Double Click e Google Analytics).
-### Proteger de DPI {#dpi}
+### Protect against DPI {#dpi}
O Deep Packet Inspection é um sistema de análise profunda e filtragem de tráfego por conteúdo de pacotes, bem como de acúmulo de dados estatísticos. Usando esta tecnologia, os ISPs têm a capacidade de controlar o tráfego que passa por eles e limitar o acesso ao conteúdo para seus clientes.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 6654db92683..b45490a7bd7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/pt/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 51893b181ac..a7e34702b01 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/ro/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 68eb997feb1..621c5c99b3e 100644
--- a/i18n/ro/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/ro/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Modul Incognito
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
index 7dbfb35d449..9d916048c24 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/extensions.md
@@ -49,7 +49,7 @@ sidebar_position: 3
## AdGuard для Safari
-*AdGuard for Safari* activates the AdGuard icon next to the search bar. Это полезно, если вы хотите быстро настроить защиту на конкретном сайте или заблокировать рекламу вручную. Расширение также содержит продвинутые правила, которые не преобразуются в формат, поддерживаемый Safari. These include [CSS rules](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [extended CSS selectors](/general/ad-filtering/create-own-filters#extended-css-selectors), and [scriptlets](/general/ad-filtering/create-own-filters#scriptlets), which allow AdGuard to block complex ads, such as those on YouTube.
+*AdGuard для Safari* добавляет иконку AdGuard рядом со строкой поиска. Это полезно, если вы хотите быстро настроить защиту на конкретном сайте или заблокировать рекламу вручную. Расширение также содержит продвинутые правила, которые не преобразуются в формат, поддерживаемый Safari. К ним относятся [CSS-правила](/general/ad-filtering/create-own-filters#cosmetic-css-rules), [расширенные CSS-селекторы](/general/ad-filtering/create-own-filters#extended-css-selectors) и [скриптлеты](/general/ad-filtering/create-own-filters#scriptlets), которые позволяют AdGuard блокировать сложную рекламу, например, на YouTube.
## Как управлять расширениями Safari
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 26e55384348..d762d6371af 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -284,7 +284,7 @@ Wildcard-символы поддерживаются для TLD-доменов
- ✅ — полностью поддерживается
- ✅ * — поддерживается, но надёжность может быть разной или могут возникнуть ограничения; ознакомьтесь с описанием модификатора для получения подробной информации
-- ⏳ — feature that is planned to be implemented but is not yet available in any product
+- ⏳ — планируется к реализации, но пока недоступен ни в одном продукте
- ❌ — не поддерживается
:::
@@ -446,7 +446,7 @@ entry_i = ( regular_domain / any_tld_domain / regexp )
:::caution Ограничения
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
@@ -460,7 +460,7 @@ Safari не поддерживает одновременно разрешённ
Правила с регулярными выражениями в модификаторе `$domain` поддерживаются в AdGuard для Windows, AdGuard для Mac и AdGuard для Android [с CoreLibs][] версии 1.11 или выше и в Браузерном расширении AdGuard [с TSUrlFilter][] версии 3.0.0 или выше.
-In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`.
+В AdGuard для Windows, Mac и Android [с CoreLibs 1.12 или более поздней версии][] вместо модификатора `$domain` можно также использовать `$from`.
:::
@@ -578,7 +578,7 @@ AdGuard будет пытаться закрыть браузерную вкла
:::caution Ограничения
1. Модификатор `$popup` лучше всего работает в расширении AdGuard для браузеров на базе Chromium и Firefox.
-1. In [AdGuard for Chrome MV3][ext-mv3] rules with the [`$popup`][popup-in-mv3] modifier would not work, so we disable converting them to declarative rules. Мы попытаемся использовать их только в нашем движке [TSUrlFilter][] и закрывать новые вкладки программно.
+1. [В AdGuard для Chrome MV3][ext-mv3] правила с модификатором [`$popup`][popup-in-mv3] не будут работать, поэтому мы отключаем их преобразование в декларативные правила. Мы попытаемся использовать их только в нашем движке [TSUrlFilter][] и закрывать новые вкладки программно.
1. В AdGuard для iOS и AdGuard для Safari `$popup`-правила просто заблокируют страницу.
1. В AdGuard для Windows, AdGuard для Mac и AdGuard для Android модификатор `$popup` в некоторых случаях может не обнаружить всплывающее окно, и оно не будет заблокировано. Модификатор `$popup` применяет тип контента `document` со специальным флагом, который передаётся блокирующей странице. Блокирующая страница сама может провести некоторые проверки и закрыть окно, если это действительно всплывающее окно. В противном случае страница должна быть загружена. Его можно комбинировать с другими модификаторами типа запроса, такими как `$third-party`, `$strict-third-party`, `$strict-first-party` и `$important`.
@@ -784,7 +784,7 @@ AdGuard для Windows, Mac и Android часто не может точно о
:::info Совместимость
-Rules with `$ping` modifier are not supported by AdGuard for Safari and AdGuard for iOS.
+Правила с модификатором `$ping` не поддерживаются в AdGuard для Safari и AdGuard для iOS.
:::
@@ -817,11 +817,11 @@ Rules with `$ping` modifier are not supported by AdGuard for Safari and AdGuard
:::
-##### `$subdocument` modified limitations {#subdocument-modifier-limitations}
+##### Ограничения модификатора `$subdocument` {#subdocument-modifier-limitations}
:::caution Ограничения
-In AdGuard for Windows, Mac, and Android subdocuments are being detected by the [Sec-Fetch-Dest header][] if it is present. В противном случае некоторые основные страницы могут рассматриваться как поддокументы.
+В AdGuard для Windows, Mac и Android поддокументы определяются [по заголовку Sec-Fetch-Dest][], если он присутствует. В противном случае некоторые основные страницы могут рассматриваться как поддокументы.
:::
@@ -835,11 +835,11 @@ In AdGuard for Windows, Mac, and Android subdocuments are being detected by the
Правило применяется только к соединениям WebSocket.
-##### `$websocket` modifier limitations {#websocket-modifier-limitations}
+##### Ограничения модификатора `$websocket` {#websocket-modifier-limitations}
:::caution Ограничения
-For AdGuard for Safari and AdGuard for iOS, it is supported on devices with macOS Monterey (version 12) and iOS 16 or higher respectively.
+Что касается AdGuard для Safari и AdGuard для iOS, то они поддерживаются на устройствах с macOS Monterey (версия 12) и iOS 16 и выше соответственно.
:::
@@ -993,7 +993,7 @@ $extension="userscript name\, with \"quote\""
#### **`$jsinject`** {#jsinject-modifier}
-Forbids adding of JavaScript code to the page. О скриптлетах и javascript-правилах речь пойдёт ниже.
+Запрещает добавлять JavaScript-код на страницу. О скриптлетах и javascript-правилах речь пойдёт ниже.
**Примеры**
@@ -1212,7 +1212,7 @@ Rules with `$genericblock` modifier are not supported by AdGuard Content Blocker
- ✅ — полностью поддерживается
- ✅ * — поддерживается, но надёжность может быть разной или могут возникнуть ограничения; ознакомьтесь с описанием модификатора для получения подробной информации
-- ⏳ — feature that is planned to be implemented but is not yet available in any product
+- ⏳ — планируется к реализации, но пока недоступен ни в одном продукте
- ❌ — не поддерживается
- 👎 — устарел; всё ещё поддерживается, но в будущем будет удалён
@@ -4749,7 +4749,7 @@ The following scriptlets also may be used for debug purposes:
- ✅ — полностью поддерживается
- ✅ * — поддерживается, но надёжность может быть разной или могут возникнуть ограничения; ознакомьтесь с описанием модификатора для получения подробной информации
- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions
-- ⏳ — feature that is planned to be implemented but is not yet available in any product
+- ⏳ — планируется к реализации, но пока недоступен ни в одном продукте
- ❌ — не поддерживается
- 👎 — устарел; всё ещё поддерживается, но в будущем будет удалён
- 🚫 — удалён и больше не поддерживается
@@ -4758,7 +4758,7 @@ The following scriptlets also may be used for debug purposes:
[popup-in-mv3]: https://github.com/AdguardTeam/tsurlfilter/tree/epic/tswebextension/packages/tsurlfilter/src/rules/declarative-converter#popup
-[Sec-Fetch-Dest header]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Dest
+[по заголовку Sec-Fetch-Dest]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-Fetch-Dest
[jsinject-in-mv3]: https://github.com/AdguardTeam/tsurlfilter/tree/release/v3.1/packages/tsurlfilter/src/rules/declarative-converter#jsinject
@@ -4768,6 +4768,7 @@ The following scriptlets also may be used for debug purposes:
[ext-chr]: #what-product "Браузерное расширение AdGuard для Chrome и других браузеров на основе Chromium"
[ext-mv3]: #what-product "Браузерное расширение AdGuard MV3 для Chrome"
[ext-mv3]: #what-product "AdGuard Browser Extension for Chrome MV3"
+[ext-mv3]: #what-product "Браузерное расширение AdGuard для Chrome MV3"
[ext-ff]: #what-product "Браузерное расширение AdGuard для Firefox"
[ios-app]: #what-product "AdGuard для iOS и AdGuard Pro для iOS"
[ios-app]: #what-product "AdGuard for iOS and AdGuard Pro for iOS"
@@ -4780,6 +4781,7 @@ The following scriptlets also may be used for debug purposes:
[FiltersRegistry]: https://github.com/AdguardTeam/FiltersRegistry
[c CoreLibs]: https://adguard.com/en/blog/introducing-corelibs.html
[с CoreLibs]: https://adguard.com/en/blog/introducing-corelibs.html
+[с CoreLibs 1.12 или более поздней версии]: https://adguard.com/ru/blog/introducing-corelibs.html
[CoreLibs]: https://adguard.com/en/blog/introducing-corelibs.html
[с TSUrlFilter]: https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/tsurlfilter#tsurlfilter
[TSUrlFilter]: https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/tsurlfilter#tsurlfilter
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 8001eaf12f4..e62039f0a0a 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Защита от трекинга
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Многие сайты собирают различную информацию о своих посетителях: их IP-адрес, сведения об установленном браузере и операционной системе, экранном разрешении и даже о том, с какой веб-страницы перешёл пользователь. Чтобы сохранить индивидуальные настройки, личные предпочтения или узнать посетителя при повторном визите, некоторые интернет-ресурсы помечают браузер специальными куки-файлами. Защита от трекинга призвана защитить ваши данные от таких счётчиков и автоматических систем сбора статистики.
+Многие сайты собирают различную информацию о своих посетителях: их IP-адрес, сведения об установленном браузере и операционной системе, экранном разрешении и даже о том, с какой веб-страницы перешёл пользователь. Чтобы сохранить индивидуальные настройки, личные предпочтения или узнать посетителя при повторном визите, некоторые интернет-ресурсы помечают браузер специальными куки-файлами. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
У Защиты от трекинга гибкие настройки: например, можно запретить передачу на сайт сведений о поисковом запросе, по которому вы нашли его в интернете, или автоматически удалять сторонние куки и куки, переданные сайтом. А ещё отключить пересылку браузером данных геолокации, которые могут быть использованы для определения вашего местоположения, скрыть реальный IP-адрес и даже указать вместо него произвольный.
@@ -17,21 +17,21 @@ sidebar_position: 4
## Основные {#general}
-### Скрывать поисковые запросы {#searchqueries}
+### Hide search queries {#searchqueries}
При переходах из результатов поиска Google, Yandex и других поисковых систем эта опция скрывает от сайта поисковый запрос, по которому вы нашли его.
-### Просить сайты не отслеживать вас {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Отправляет сигналы [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) и [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) сайтам, которые вы посещаете.
-### Очистить URL от параметров отслеживания
+### Remove tracking parameters from URLs {#removetracking}
Удаляет из адресов страниц такие параметры отслеживания, как `utm_*` и `fb_ref`.
### Методы отслеживания {#tracking-methods}
-### Самоуничтожение сторонних куки {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Сайты хранят в куки-файлах информацию о вас и ваших предпочтениях, например, выбранный язык страницы, местоположение или даже список товаров в корзине. Когда вы возвращаетесь на сайт, браузер отправляет обратно принадлежащие сайту куки, что позволяет ему «вспомнить» ваши данные.
@@ -45,7 +45,7 @@ sidebar_position: 4
:::
-### Самоуничтожение куки сайта {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Установите временной интервал в минутах, по истечении которого сторонние куки будут уничтожены. Установите значение «0», чтобы заблокировать их полностью.
@@ -55,7 +55,7 @@ sidebar_position: 4
:::
-### Отключить кеш-память для сторонних запросов {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
При обращении браузера к странице сервер выдаёт ему цифровую метку ETag. Используя её, браузер кеширует содержимое страницы. При последующих запросах он отправляет метку ETag на соответствующий ей сервер, который, таким образом, узнаёт, кто к нему пришёл. Пока файлы сайта находятся в кеше, метка посылается всякий раз при запросе к этому сайту. Если на сайте встроено содержимое с другого сервера (например, изображение или iframe), другой сервер также может отслеживать вас без вашего ведома.
@@ -97,23 +97,23 @@ Referer — это HTTP-заголовок, используемый в запр
С другой стороны, из-за особенностей всех расширений, Браузерное расширение AdGuard работает «внутри» браузера. Оно изменит Referer незамедлительно, так что в инструментах разработчика будет виден желаемый Referer для ваших запросов.
-### Скрывать User-Agent {#useragent}
+### Hide User-Agent {#useragent}
Когда вы посещаете сайт, браузер отправляет информацию о себе на сервер. Это похоже на текстовую строку, которая является частью HTTP-запроса и начинается с «User-Agent:». Обычно она включает в себя название и версию браузера, операционную систему и языковые настройки. Мы убираем из User-Agent всю информацию, по которой вас можно идентифицировать, чтобы рекламодатели не могли получить к ней доступ.
Указать свой User-Agent можно в поле Пользовательский User-Agent. Оставьте поле пустым, чтобы использовать User-Agent по умолчанию.
-### Скрывать IP-адрес {#ip}
+### Mask IP address {#ip}
Защита от трекинга не может скрыть ваш IP-адрес. Но мы можем замаскировать вас таким образом, что посещаемый сайт будет воспринимать вас как прокси-сервер. Иногда это помогает, и сайты игнорируют ваш настоящий IP-адрес.
Вы можете установить произвольный IP-адрес, который желаете выдать за свой, просто введя его в соответствующее поле. Оставьте поле пустым, чтобы использовать IP-адрес по умолчанию.
-### Удалять заголовок X-Client-Data из HTTP-запросов {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
Запрещает Google Chrome отправлять информацию о своей версии и модификациях с запросами на домены Google (включая DoubleClick и Google Analytics).
-### Защита от DPI {#dpi}
+### Protect against DPI {#dpi}
DPI (Deep Packet Inspection) — это система глубокого анализа и фильтрации трафика по содержимому пакетов, а также накопления статистических данных. Используя её, интернет-провайдеры могут контролировать проходящий трафик и ограничивать любому своему клиенту доступ к контенту.
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/sk/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/sk/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/sk/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/sl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/sl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/sl/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/sv/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/sv/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/sv/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/ta/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/ta/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/ta/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 2fe9f828a14..d41d126a2d0 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
index e17dc17ba6b..82eb8378031 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/how-ad-blocking-works.md
@@ -31,7 +31,7 @@ And even when a rule finally gets added to a filter, it doesn't mean that it sta
AdGuard users [have access to a special web reporting tool](https://reports.adguard.com/new_issue.html). Thanks to user complaints, filter developers can focus on correcting their filter lists and not on scouring the Internet for new and old unblocked ads.
-Filters can do more than just block ads. There are filters that block tracking, social media widgets, and annoyances, such as cookie notices. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
+Filters can do more than just block ads. İzlenmeyi, sosyal medya araçlarını ve çerez bildirimleri gibican sıkıcı öğeleri engelleyen filtreler vardır. Different users may choose different combinations of filters to match their personal preferences. There are websites like [filterlists.com](https://filterlists.com/) that are dedicated to filter lists and have huge databases.
We develop and maintain [our own set of filter lists](../adguard-filters) that can be used with AdGuard or other ad blockers.
@@ -63,31 +63,31 @@ There are other types of filtering rules, but they require more advanced technic
:::
-## Types of request handling in AdGuard
+## AdGuard'da istek işleme türleri
-AdGuard handles requests according to filters, user rules and settings enabled by the user. As a result, a request can be blocked, modified, allowed or, when nothing is done to it, just processed.
+AdGuard, istekleri kullanıcı tarafından etkinleştirilen filtrelere, kullanıcı kurallarına ve ayarlara göre işler. Sonuç olarak, bir istek engellenebilir, değiştirilebilir, izin verilebilir veya üzerine hiçbir işlem yapılmadığında sadece işlenebilir.
Detailed information on how each request of yours has been handled by AdGuard can be found in the *Filtering log* (AdGuard for Windows, AdGuard for Mac, AdGuard Browser Extension) or *Recent activity* (AdGuard for iOS, AdGuard for Android).
-Regarding AdGuard filters, you can also check [our filter policy](../filter-policy), which describes in detail what and why each of our filters blocks.
+AdGuard filtreleriyle ilgili olarak, filtrelerimizin her birinin neyi ve neden engellediğini ayrıntılı olarak açıklayan [filtre politikamızı](../filter-policy) da kontrol edebilirsiniz.
-### Examples of blocked requests
+### Engellenen isteklerin örnekleri
-AdGuard DNS filter blocks requests to ad domains, such as `ad.doubleclick.net`.
+AdGuard DNS filtresi, `ad.doubleclick.net` gibi reklam alan adlarına gelen istekleri engeller.
-AdGuard Tracking Protection filter blocks tracking requests, such as `youtube.com/youtubei/log_event?`.
+AdGuard İzleme Koruması filtresi, `youtube.com/youtubei/log_event?` gibi izleme isteklerini engeller.
-### Examples of allowed requests
+### İzin verilen isteklerin örnekleri
-AdGuard Base filter allows non-ad requests, such as `www.google.com/complete/search?q=`.
+AdGuard Temel filtresi, `www.google.com/complete/search?q=` gibi reklam dışı isteklerin yapılmasına izin verir.
Filter unblocking search ads and self-promotion allows requests to search ad-related domains, such as `www.google.com/aclk?`.
-Requests to websites that are added by the user to *Allowlist* are allowed.
+Kullanıcı tarafından *İzin listesine* eklenen sitelere yapılan isteklere izin verilir.
-### Examples of modified requests
+### Değiştirilmiş isteklerin örnekleri
-Tracking protection feature with protection level set to *High* enables AdGuard URL Tracking filter which modifies requests by removing tracking parameters from them:
+Koruma seviyesi *Yüksek* olarak ayarlanmış izleme koruması özelliği, izleme parametrelerini kaldırarak istekleri değiştiren AdGuard URL İzleme filtresini etkinleştirir:
`https://www.rentio.jp/products/ax-n1b?click_from=top_newitems` → `https://www.rentio.jp/products/ax-n1b`
@@ -97,5 +97,5 @@ Tracking protection feature with protection level set to *High* enables AdGuard
Please note that *modified* events you see in the Filtering log or Recent activity refer not only to the cases when a request is modified, but also when:
-- something on the page is changed (usually by cosmetic rules)
-- the response is modified
+- sayfadaki bir şey değiştirilirse (genellikle kozmetik kurallar tarafından)
+- yanıt değiştirilirse
diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 24f3b0915c5..98497c2288e 100644
--- a/i18n/tr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Gizlilik Modu
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Birçok site ziyaretçileri hakkında IP adresi, yüklü tarayıcı ve işletim sistemi, ekran çözünürlüğü ve hatta bir ziyaretçinin yönlendirildiği sayfa gibi bilgileri toplar. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Birçok site ziyaretçileri hakkında IP adresi, yüklü tarayıcı ve işletim sistemi, ekran çözünürlüğü ve hatta bir ziyaretçinin yönlendirildiği sayfa gibi bilgileri toplar. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## Genel {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Sitelerden sizi izlememelerini iste {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Gizli Mod, IP adresinizi gizleyemez. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/uk/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/uk/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/uk/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/vi/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/vi/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/vi/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
index c8ddd76f201..7c06181a12e 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/features.md
@@ -1,5 +1,5 @@
---
-title: Features
+title: 功能
sidebar_position: 1
---
@@ -9,7 +9,7 @@ sidebar_position: 1
:::
-## Main menu
+## 主菜单
The article explains the main functions on the pop-up, such as enabling or disabling ad blocking, accessing settings, managing filters, and viewing protection statistics.
@@ -21,7 +21,7 @@ The article describes how AdGuard Browser Extension allows you to customize ad b
[Filters](/adguard-browser-extension/features/filters.md)
-## Tracking protection (Stealth Mode)
+## 跟踪保护(隐身模式)
The article explains how this feature enhances privacy by blocking online trackers, hiding user information, and preventing third-party data collection.
@@ -31,4 +31,4 @@ The article explains how this feature enhances privacy by blocking online tracke
The article describes additional features and information, such as update notifications, filtering log, statistics on blocked ads and trackers, links to privacy documents, and the repository.
-[Other features and options](/adguard-browser-extension/features/other-features.md)
+[其他功能与选项](/adguard-browser-extension/features/other-features.md)
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
index 83195c76e7b..05a8c607df5 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/stealth-mode.md
@@ -1,5 +1,5 @@
---
-title: Tracking protection (Stealth Mode)
+title: 跟踪保护(隐身模式)
sidebar_position: 3
---
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md
index bd9b4123ac7..2f113881bb9 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/solving-problems.md
@@ -3,7 +3,7 @@ title: 解决问题
sidebar_position: 1
---
-Here are some guides you may need to solve problems with the AdGuard Browser Extension.
+以下是解决与 AdGuard 浏览器扩展有关的问题指南。
-- [How to export logs from the background page](/adguard-browser-extension/solving-problems/logs.md)
-- [How to debug rules in AdGuard for Chrome MV3](/adguard-browser-extension/solving-problems/debug-rules.md)
+- [如何从后台页面导出日志](/adguard-browser-extension/solving-problems/logs.md)
+- [如何在 Chrome 浏览器 MV3 中调试规则](/adguard-browser-extension/solving-problems/debug-rules.md)
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index 570f7f729a2..128c1cde312 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 83e7b20e535..ae0e59148d7 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: 隐身模式
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-众多网站收集其访问者的信息,例如 IP 地址,安装的浏览器及操作系统,屏幕分辨率,甚至是重新定向访问者的页面。 有些网页使用 Cookie 以标记用户的浏览器并保存个人设置及首选项,或在用户下次访问时进行身份识别。 隐身模式可保护个人信息免受此类数据和统计收集系统的侵害。
+众多网站收集其访问者的信息,例如 IP 地址,安装的浏览器及操作系统,屏幕分辨率,甚至是重新定向访问者的页面。 有些网页使用 Cookie 以标记用户的浏览器并保存个人设置及首选项,或在用户下次访问时进行身份识别。 *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
您可以灵活调整隐身模式的工作:例如,可以禁止网站接收您在互联网上查找其时使用的搜索请求,自动删除第三方和网站自己的 Cookie,关闭可用于跟踪您行踪的浏览器地理位置共享,以及隐藏真实 IP 地址,甚至用任意 IP 地址取而代之。
@@ -17,21 +17,21 @@ sidebar_position: 4
## 常规 {#general}
-### 隐藏搜索查询 {#searchqueries}
+### Hide search queries {#searchqueries}
当用户从 Google、Yahoo 或任何其它搜索引擎定向到某个网站时,该设置隐藏您用于查找相应网站的搜索查询。
-### 要求网站不进行跟踪 {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
向用户访问的网站发送[全球隐私控制](https://globalprivacycontrol.org/#gpc-spec)与[请勿跟踪](https://en.wikipedia.org/wiki/Do_Not_Track)信号。
-### 剥离 URL 内的跟踪参数
+### Remove tracking parameters from URLs {#removetracking}
开启此功能后,AdGuard 将从网页的 URL 内剥离跟踪参数,如 `utm_*` 和 ` fb_ref`。
### 跟踪方式 {#tracking-methods}
-### 自销毁第三方 Cookie {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
网站使用 Cookie 存储用户的信息和首选项,如所选语言,地理位置或购物车上的物品清单。 当您回到网站时,浏览器会回送所属网站的 Cookie,允许其“记住”您的数据。
@@ -45,7 +45,7 @@ sidebar_position: 4
:::
-### 自销毁第一方 Cookie {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
以分钟为单位设置销毁所有 Cookie 的时间段。 设置计时器为 0 以完全阻止它们。
@@ -55,7 +55,7 @@ sidebar_position: 4
:::
-### 禁用缓存第三方请求 {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
当浏览器寻址某个网页时,服务器会指派 ETag 给相应的网页。 此 ETag 是用于浏览器缓存网页内容。 在进行后续的请求时,浏览器会发送 ETag 给相应的服务器,从而让服务器知晓访问者的身份。 只要网站文件处于缓存状态,浏览器每次访问此网站时都会发送 ETag。 如此网站内嵌其它服务器的内容(如图像或 iframe),则服务器可在您不知情的情况下跟踪您的活动。
@@ -97,23 +97,23 @@ Referrer 是浏览器发送请求到服务器时所用的 HTTP 头部。 其包
相反,由于所有浏览器扩展的性质,AdGuard 浏览器扩展在浏览器“内部”运行。 它将立即更改 Referer,因此开发工具将为用户的请求显示所需的 Referer。
-### 隐藏 User-Agent {#useragent}
+### Hide User-Agent {#useragent}
当您访问网站时,浏览器会发送其信息给服务器。 其如一行文本,是以 "User-Agent:" 为开头作为 HTTP 请求的一部分。 其通常包括浏览器的名称和版本,以及操作系统和语言设置。 我们移除身份识别信息内的 User-Agent,以使广告商无法获取它。
您也可在自定义 User-Agent 字段输入任意值以设置 User-Agent。 要使用默认 User-Agent,置空此字段即可。
-### 隐藏 IP 地址 {#ip}
+### Mask IP address {#ip}
隐身模式无法隐藏 IP 地址。 但该设置可以帮用户伪装地址,让您访问的网站认为您是一个代理。 有时这会有帮助,网站将忽略用户的真实 IP 地址。
用户可以设置任意 IP 地址,只需将其输入到相应的字段中即可,让其他人将其视为您的 IP 地址。 要使用默认 IP 地址,置空此字段即可。
-### 移除 HTTP 请求中的 X-Client-Data 头部 {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
禁止 Google Chrome 向 Google 域(包括 Double Click 和 Google Analytics)发送包含版本和修改信息的请求。
-### 保护免受 DPI 影响 {#dpi}
+### Protect against DPI {#dpi}
深度数据包检测(英语:Deep Packet Inspection,缩写成 DPI)是一种按数据包内容对流量进行深度分析和过滤以及统计数据积累的系统。 利用这项技术,互联网服务提供商能够控制流量传输及限制客户访问内容。
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
index fd0884d9c2c..0b4e5d04a66 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
@@ -446,7 +446,7 @@ In the following examples it is implied that requests are sent from `http://exam
:::caution Limitations
-In [AdGuard for Chrome MV3][ext-mv3] `regexp` and `any_tld domains` are not supported.
+In [AdGuard for Chrome MV3][ext-mv3], `regexp` and `any_tld_domain` entries are not supported.
:::
diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/stealth-mode.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/stealth-mode.md
index 77b251967d1..823ccb2d281 100644
--- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/stealth-mode.md
+++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/general/stealth-mode.md
@@ -1,9 +1,9 @@
---
-title: Stealth Mode
+title: Stealth Mode (Tracking protection)
sidebar_position: 4
---
-Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data- and statistics-gathering systems.
+Many websites gather information about their visitors, such as their IP address, installed browser and operating system, screen resolution, and even the page from which a visitor was redirected. Some web pages use cookies to mark your browser and save your personal settings and preferences, or to "recognize" you upon your next visit. *Stealth Mode* (or *Tracking protection* in AdGuard for Windows and AdGuard Browser Extension) safeguards your personal information from such data- and statistics-gathering systems.
You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website from receiving the search request you used to find it on the Internet, automatically delete both third-party and the website's own cookies, turn off browser geolocation sharing that can be used to track your whereabouts, and hide your true IP address or even replace it with an arbitrary one.
@@ -17,21 +17,21 @@ Some options may not be available depending on the particular product due to OS
## General {#general}
-### Hide your search queries {#searchqueries}
+### Hide search queries {#searchqueries}
When you get directed to a website from Google, Yahoo, or any other search engine, this option hides the search query that you used to find that website.
-### Ask websites not to track you {#donottrack}
+### Send signals to opt out of tracking {#donottrack}
Sends the [Global Privacy Control](https://globalprivacycontrol.org/#gpc-spec) and [Do Not Track](https://en.wikipedia.org/wiki/Do_Not_Track) signals to the websites you visit.
-### Strip tracking parameters from URLs
+### Remove tracking parameters from URLs {#removetracking}
If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs.
### Tracking methods {#tracking-methods}
-### Self-destruction of third-party cookies {#3p-cookie}
+### Delete third-party cookies {#3p-cookie}
Websites use cookies to store your information and preferences, such as the language you selected, your location, or the list of items in your shopping cart. When you return to a website, your browser sends back the cookies belonging to that website, which allows it to "remember" your data.
@@ -45,7 +45,7 @@ This setting deletes all third-party cookies, including the information of your
:::
-### Self-destruction of first-party cookies {#1p-cookie}
+### Delete first-party cookies (not recommended) {#1p-cookie}
Set a time period (in minutes) at the end of which all cookies will be destroyed. Set the timer to 0 to block them completely.
@@ -55,7 +55,7 @@ We do not recommend enabling this option as it may severely interfere with the w
:::
-### Disable cache for third-party requests {#3p-cache}
+### Block ETag and If-None-Match headers {#3p-cache}
When a browser addresses a page, the server assigns an ETag to that page. This ETag is used by the browser to cache the page's contents. Upon subsequent requests, the browser sends the ETag to the corresponding server, thus letting the server learn the visitor’s identity. As long as the site's files are cached, the ETag is sent every time your browser addresses this site. If the site has embedded content from another server (such as an image or iframe), that server can track your activities without your knowledge.
@@ -97,23 +97,23 @@ Note that to be able to filter traffic, AdGuard applications 'intercept' browser
On the other hand, due to the nature of all browser extensions, AdGuard Browser Extension works 'inside' the browser. It will alter the Referer right then and there, so Developer Tools will show the desired Referer for your requests.
-### Hide your User-Agent {#useragent}
+### Hide User-Agent {#useragent}
When you visit a website, your browser sends its information to the server. It looks like a text line that is part of an HTTP request that begins with "User-Agent:". It usually includes the name and version of the browser, the operating system, and language settings. We cut User-Agent from identifying information so that advertisers cannot obtain it.
You can also set an arbitrary value for User-Agent by entering it into the Custom User-Agent field. To use default User-Agent, leave the field blank.
-### Hide your IP address {#ip}
+### Mask IP address {#ip}
Stealth Mode cannot hide your IP address. However, we can conceal it so that websites you visit will think you are a proxy. Sometimes this helps, and websites ignore your true IP address.
You can set an arbitrary IP address, which you would like others to perceive as yours, by simply entering it into the corresponding field. To use the default IP address, leave the field blank.
-### Remove X-Client-Data header from HTTP requests {#xclientdata}
+### Remove X-Client-Data header {#xclientdata}
It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics).
-### Protect from DPI {#dpi}
+### Protect against DPI {#dpi}
The Deep Packet Inspection is a system of deep analysis and filtering of traffic by packet content, as well as the accumulation of statistical data. Using this technology, ISPs have the ability to control the passing traffic and limit access to content for their clients.