From c0e5aee21cd1582c95c183eec8c7c988c5415eda Mon Sep 17 00:00:00 2001 From: Stanislav A Date: Thu, 29 Jun 2023 14:29:08 +0300 Subject: [PATCH 01/30] update compatibility for modifier --- 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 0ccbf4aae68..dc502d45b2a 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1522,7 +1522,7 @@ The list of the available directives is available [here](https://developer.mozil :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android, **running CoreLibs version 1.11 or later**. +Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android, **running CoreLibs v1.11 or later**, and AdGuard Browser Extension, **running TSUrlFilter vX.X.X or later**. ::: From dc8529a8a87a55b1a14c8319f5ea8e236cf96629 Mon Sep 17 00:00:00 2001 From: Stanislav A Date: Mon, 3 Jul 2023 16:06:39 +0300 Subject: [PATCH 02/30] remove excessive limitations point --- docs/general/ad-filtering/create-own-filters.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index dc502d45b2a..d292def2258 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1515,8 +1515,7 @@ The list of the available directives is available [here](https://developer.mozil :::caution Limitations -1. Characters forbidden in the `$permissions` value: `$`; -2. `$permissions` is compatible with the limited list of modifiers: `$domain`, `$important`, and `$subdocument`. +1. `$permissions` is compatible with the limited list of modifiers: `$domain`, `$important`, and `$subdocument`. ::: From de6d7ad4b0b96dc622c8bfad63bb5bab16b25648 Mon Sep 17 00:00:00 2001 From: Stanislav A Date: Fri, 18 Aug 2023 20:40:20 +0300 Subject: [PATCH 03/30] update doc for domain and denyallow modifiers --- .../current/general/ad-filtering/create-own-filters.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 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 00432b80f16..4f57c270c4e 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 @@ -320,7 +320,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`](#denyallow-modifier) can not be used together with `$to`. 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. @@ -416,7 +417,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android, **running CoreLibs v1.11 or later**. +Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android, **running CoreLibs v1.11 or later**, and AdGuard Browser extension, **running TSUrlFilter vX.X.X or later**. In AdGuard for Windows, Mac and Android **running CoreLibs v1.12 or later** the `$domain` modifier can be alternatively spelled as `$from`. @@ -559,7 +560,7 @@ If there is a `$~third-party` modifier, the rule is only applied to the requests :::caution Limitations -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. + - [`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: From 4c6a561a87a06daa03953d348bc47e788b319b0f Mon Sep 17 00:00:00 2001 From: Stanislav A Date: Tue, 3 Oct 2023 21:08:25 +0300 Subject: [PATCH 04/30] update stealth modifier compatibility for browser extension --- docs/general/ad-filtering/create-own-filters.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index 408c99e67df..acf7e4f52e0 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1039,7 +1039,8 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit :::info Compatibility - Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- `$stealth` modifier with specific options is supported by AdGuard for Windows, Mac, and Android, **running CoreLibs version 1.10 or later**. +- `$stealth` modifier with specific options is supported by AdGuard for Windows, Mac, and Android, **running CoreLibs version 1.10 or later**, and AdGuard Browser Extension, **running TSUrlFilter vX.X.X or later**. +- AdGuard Browser extension only supports `searchqueries`, `donottrack`, `referrer` and `xclientdata` options. ::: From 926bcde06a522983f70d11915bccbd3fecbd6ae1 Mon Sep 17 00:00:00 2001 From: Stanislav A Date: Wed, 25 Oct 2023 20:15:49 +0300 Subject: [PATCH 05/30] update list of supported options --- 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 acf7e4f52e0..9fd8a2dae15 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1040,7 +1040,7 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. - `$stealth` modifier with specific options is supported by AdGuard for Windows, Mac, and Android, **running CoreLibs version 1.10 or later**, and AdGuard Browser Extension, **running TSUrlFilter vX.X.X or later**. -- AdGuard Browser extension only supports `searchqueries`, `donottrack`, `referrer` and `xclientdata` options. +- AdGuard Browser extension supports `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: From a0b8ae09c1c0a7be4316fdead030380342cf6394 Mon Sep 17 00:00:00 2001 From: Elena Ter-Mikaelyan Date: Wed, 29 Nov 2023 14:52:15 +0300 Subject: [PATCH 06/30] AGM-1849 add privacy policy notes --- docs/adguard-for-android/solving-problems/har.md | 6 ++++++ docs/adguard-for-android/solving-problems/log.md | 6 ++++++ docs/adguard-for-android/solving-problems/logcat.md | 6 ++++++ docs/adguard-for-windows/solving-problems/adguard-logs.md | 6 ++++++ docs/adguard-for-windows/solving-problems/dump-file.md | 6 ++++++ .../solving-problems/installation-logs.md | 6 ++++++ docs/adguard-for-windows/solving-problems/system-logs.md | 6 ++++++ 7 files changed, 42 insertions(+) diff --git a/docs/adguard-for-android/solving-problems/har.md b/docs/adguard-for-android/solving-problems/har.md index c1b3254113a..90ddbd4cede 100644 --- a/docs/adguard-for-android/solving-problems/har.md +++ b/docs/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article covers AdGuard for Android, a multifunctional ad blocker that prote ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/docs/adguard-for-android/solving-problems/log.md b/docs/adguard-for-android/solving-problems/log.md index 56ee51dcaa9..b7af0ab6347 100644 --- a/docs/adguard-for-android/solving-problems/log.md +++ b/docs/adguard-for-android/solving-problems/log.md @@ -9,6 +9,12 @@ This article covers AdGuard for Android, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. ### Collecting debug log diff --git a/docs/adguard-for-android/solving-problems/logcat.md b/docs/adguard-for-android/solving-problems/logcat.md index 4ac60bfc866..b02bbd99025 100644 --- a/docs/adguard-for-android/solving-problems/logcat.md +++ b/docs/adguard-for-android/solving-problems/logcat.md @@ -9,6 +9,12 @@ This article covers AdGuard for Android, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. ## Capture a bug report from a device diff --git a/docs/adguard-for-windows/solving-problems/adguard-logs.md b/docs/adguard-for-windows/solving-problems/adguard-logs.md index b49ee6706f7..4116e431298 100644 --- a/docs/adguard-for-windows/solving-problems/adguard-logs.md +++ b/docs/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. 1. Open the AdGuard settings. Go to the *General Settings* section, scroll down to the end of the screen and switch the *Logging Level* to *Debug*. diff --git a/docs/adguard-for-windows/solving-problems/dump-file.md b/docs/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/docs/adguard-for-windows/solving-problems/dump-file.md +++ b/docs/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/docs/adguard-for-windows/solving-problems/installation-logs.md b/docs/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/docs/adguard-for-windows/solving-problems/installation-logs.md +++ b/docs/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/docs/adguard-for-windows/solving-problems/system-logs.md b/docs/adguard-for-windows/solving-problems/system-logs.md index 21f3d502527..e7571c18985 100644 --- a/docs/adguard-for-windows/solving-problems/system-logs.md +++ b/docs/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* From 3bac4989436f01f9be968849b33301c5a4e86d2e Mon Sep 17 00:00:00 2001 From: Stanislav Atroschenko Date: Wed, 17 Jan 2024 21:34:55 +0300 Subject: [PATCH 07/30] add info on pipe separator --- docs/general/ad-filtering/create-own-filters.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index a2ddc1a9e12..2f63b2c5959 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1726,6 +1726,7 @@ The list of the available directives is available [here](https://developer.mozil 1. Characters forbidden in the `$permissions` value: `$` 2. `$permissions` is compatible with the limited list of modifiers: `$domain`, `$important`, and `$subdocument` +3. Pipe separator `|` instead of escaped comma is supported by AdGuard Browser Extension. ::: From 8180d5170b877faa63c09a9186cb3f23e7d697b9 Mon Sep 17 00:00:00 2001 From: Nikita Gorskikh Date: Thu, 1 Feb 2024 22:51:58 +0300 Subject: [PATCH 08/30] Update documentation --- docs/general/ad-filtering/create-own-filters.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index 13c3782e75a..8bc6f8f0cd1 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1715,8 +1715,11 @@ In case if multiple `$permissions` rules match a single request, AdGuard will ap **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. -The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is identical to that of the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with the following exceptions: +1. A comma that separates multiple features **MUST** be escaped — see examples below. +2. A pipe character (`|`) can be used to separate features instead of a comma. + +The list of available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1726,6 +1729,7 @@ The list of the available directives is available [here](https://developer.mozil - `@@||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. - `@@||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. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::caution Restrictions From cc3aab2dbc797db5dab73311457633069523ca2e Mon Sep 17 00:00:00 2001 From: Nikita Gorskikh Date: Tue, 13 Feb 2024 13:00:32 +0300 Subject: [PATCH 09/30] Add a warning about content-type modifiers, fix a dash symbol --- docs/general/ad-filtering/create-own-filters.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index 8bc6f8f0cd1..10a243a1a66 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1729,13 +1729,14 @@ The list of available directives is available [here](https://developer.mozilla.o - `@@||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. - `@@||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. +- `$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. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::caution Restrictions -1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with the limited list of modifiers: `$domain`, `$important`, and `$subdocument` +1. Characters forbidden in the `$permissions` value: `$`. +2. `$permissions` is compatible with a limited set of modifiers: `$domain`, `$important`, `$subdocument`, and the [content type modifiers](#content-type-modifiers). +3. `$permissions` rules that do not have any [content type modifiers](#content-type-modifiers) will match only requests where content type is `document`. ::: From 4dcf4f7d0a9e933e02adf87884e134d4af2cb2d7 Mon Sep 17 00:00:00 2001 From: Nikita Gorskikh Date: Tue, 27 Feb 2024 13:34:15 +0300 Subject: [PATCH 10/30] Edit --- docs/general/ad-filtering/create-own-filters.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index 10a243a1a66..68fc5e0f421 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1735,8 +1735,8 @@ The list of available directives is available [here](https://developer.mozilla.o :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$`. -2. `$permissions` is compatible with a limited set of modifiers: `$domain`, `$important`, `$subdocument`, and the [content type modifiers](#content-type-modifiers). -3. `$permissions` rules that do not have any [content type modifiers](#content-type-modifiers) will match only requests where content type is `document`. +2. `$permissions` is compatible with a limited set of modifiers: `$domain`, `$important`, `$subdocument`, and [content-type modifiers](#content-type-modifiers). +3. `$permissions` rules that do not have any [content-type modifiers](#content-type-modifiers) will match only requests where content type is `document`. ::: From 13578a200f8435c77241ba2cecd1fbcd26ddddf8 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Tue, 2 Jul 2024 19:46:41 +0400 Subject: [PATCH 11/30] fix typo --- docs/general/ad-filtering/create-own-filters.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index de39d8a226e..69a99947875 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -611,7 +611,8 @@ You may use a shorter name (alias) instead of using the full modifier name: `$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` 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. **Examples** @@ -621,7 +622,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: From 9cef9b5099e8fe73d9c093ff5a5c781c86098101 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Fri, 19 Jul 2024 18:34:50 +0300 Subject: [PATCH 12/30] update the table --- docs/general/ad-filtering/create-own-filters.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index 4665611552b..b9e9658ac01 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1108,7 +1108,7 @@ These modifiers are able to completely change the behavior of basic rules. | [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | | [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | | [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | | [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | | [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | | [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | @@ -1124,8 +1124,8 @@ These modifiers are able to completely change the behavior of basic rules. - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1979,6 +1979,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). From 091d64c5f919ba14a86b9bc38de4a511501fd7d7 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Sat, 20 Jul 2024 02:30:17 +0300 Subject: [PATCH 13/30] improve permissions modifier description --- docs/general/ad-filtering/create-own-filters.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index b9e9658ac01..8ef32811c83 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1953,7 +1953,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. +Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1964,7 +1966,7 @@ The list of the available directives is available [here](https://developer.mozil - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1991,13 +1993,13 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this 1. Characters forbidden in the `$permissions` value: `$` 1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. -1. Pipe separator `|` instead of escaped comma is supported by AdGuard Browser Extension. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0 or later. ::: From 4b3b0654e6b4c2bc70c3d07258afca2e35361966 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Sat, 20 Jul 2024 02:51:54 +0300 Subject: [PATCH 14/30] fix wording --- 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 62b33e6b8f1..df5e4e8a640 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -945,7 +945,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specified options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: From 33425dc21e4d9003588208602ae4fa44b1643347 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Sat, 20 Jul 2024 03:04:45 +0300 Subject: [PATCH 15/30] fix local link --- 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 c0283bbb547..15359c62867 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -358,7 +358,7 @@ 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`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +- `$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`. The rules which violate these restrictions are considered invalid. From f1f1e3dbfd655f732a6f58c8f39419c56c11ac11 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Sat, 20 Jul 2024 03:07:20 +0300 Subject: [PATCH 16/30] revert be locale --- .../current/general/ad-filtering/create-own-filters.md | 5 +++-- 1 file changed, 3 insertions(+), 2 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 1461bda6416..15ca0fabbd1 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 @@ -352,6 +352,7 @@ or to the combination of these three: :::caution Restrictions - 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.*`. The rules which violate these restrictions are considered invalid. @@ -449,7 +450,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android, **running CoreLibs v1.11 or later**, and AdGuard Browser extension, **running TSUrlFilter vX.X.X or later**. +Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -607,7 +608,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions - - [`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: From 1739f674e8b2dc64a5253123f8a37892d9adcabb Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Sun, 21 Jul 2024 20:53:46 +0300 Subject: [PATCH 17/30] specify tsurlfilter version --- docs/general/ad-filtering/create-own-filters.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index df5e4e8a640..c816addb540 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -989,7 +989,7 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit :::info Compatibility - Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0 or later. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0.0 or later. ::: @@ -1999,8 +1999,8 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::info Compatibility -- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0 or later. -- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter] v3.0.0 or later. ::: From e46dcc1d6d5b45a9b3c578fc9650906d7548d09c Mon Sep 17 00:00:00 2001 From: vbagirov <8577533+vbagirov@users.noreply.github.com> Date: Fri, 26 Jul 2024 16:18:58 +0000 Subject: [PATCH 18/30] automatically update translations --- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 12 ++- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 12 ++- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../compatibility.md | 6 +- .../solving-problems/logs.md | 12 ++- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 14 ++- .../solving-problems/logs.md | 12 ++- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../general/ad-filtering/filter-policy.md | 4 +- .../current/intro.md | 2 +- .../miscellaneous/contribute/filters.md | 2 +- .../contribute/translate/plural-forms.md | 4 +- .../translate/translation-priority.md | 2 +- .../solving-problems/logs.md | 12 ++- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 12 ++- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/general/browsing-security.md | 66 ++++++------ .../current/general/how-to-install.md | 4 +- .../current/general/stealth-mode.md | 102 +++++++++--------- .../current/general/userscripts.md | 88 +++++++-------- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 12 ++- .../adguard-for-android/features/settings.md | 2 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/advanced-settings.md | 20 ++-- .../solving-problems/big-sur-issues.md | 4 +- .../solving-problems/icloud-private-relay.md | 2 +- .../solving-problems/protect-mail-activity.md | 2 +- .../solving-problems/logs.md | 8 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/general/browsing-security.md | 64 +++++------ .../current/general/stealth-mode.md | 46 ++++---- .../current/general/userscripts.md | 92 ++++++++-------- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 12 ++- .../solving-problems/battery.md | 2 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 14 ++- .../solving-problems/low-level-settings.md | 2 +- .../solving-problems/tasker.md | 2 +- .../solving-problems/youtube-ads.md | 2 +- .../current/adguard-for-mac/installation.md | 2 +- .../protection-cannot-be-enabled.md | 2 +- .../adguard-for-safari/features/about.md | 6 +- .../content-blockers/adguard-custom.md | 4 +- .../content-blockers/adguard-general.md | 2 +- .../content-blockers/adguard-other.md | 6 +- .../content-blockers/adguard-privacy.md | 2 +- .../content-blockers/adguard-security.md | 2 +- .../content-blockers/adguard-social.md | 2 +- .../content-blockers/content-blockers.md | 10 +- .../adguard-for-safari/features/filters.md | 6 +- .../adguard-for-safari/features/general.md | 6 +- .../adguard-for-safari/features/rules.md | 2 +- .../adguard-for-safari/installation.md | 6 +- .../solving-problems/ads-not-blocked.md | 2 +- .../solving-problems/filters-after-disable.md | 2 +- .../solving-problems/logs.md | 8 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/general/browsing-security.md | 66 ++++++------ .../current/general/userscripts.md | 86 +++++++-------- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../adguard-for-safari/features/about.md | 6 +- .../content-blockers/adguard-custom.md | 4 +- .../content-blockers/adguard-general.md | 2 +- .../content-blockers/adguard-other.md | 6 +- .../content-blockers/adguard-privacy.md | 2 +- .../content-blockers/adguard-security.md | 2 +- .../content-blockers/adguard-social.md | 2 +- .../content-blockers/content-blockers.md | 10 +- .../adguard-for-safari/features/filters.md | 6 +- .../adguard-for-safari/features/general.md | 6 +- .../adguard-for-safari/features/rules.md | 2 +- .../solving-problems/ads-not-blocked.md | 2 +- .../solving-problems/filters-after-disable.md | 2 +- .../solving-problems/logs.md | 14 ++- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/intro.md | 8 +- .../adguard-browser-extension/availability.md | 2 +- .../comparison-standalone.md | 2 +- .../compatibility.md | 2 +- .../solving-problems/logs.md | 12 ++- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../adguard-for-safari/features/about.md | 6 +- .../content-blockers/adguard-custom.md | 4 +- .../content-blockers/adguard-general.md | 2 +- .../content-blockers/adguard-other.md | 6 +- .../content-blockers/adguard-privacy.md | 2 +- .../content-blockers/adguard-security.md | 2 +- .../content-blockers/adguard-social.md | 2 +- .../content-blockers/content-blockers.md | 10 +- .../adguard-for-safari/features/filters.md | 6 +- .../adguard-for-safari/features/general.md | 8 +- .../adguard-for-safari/features/rules.md | 2 +- .../adguard-for-safari/installation.md | 6 +- .../solving-problems/ads-not-blocked.md | 34 +++--- .../solving-problems/filters-after-disable.md | 24 ++--- .../solving-problems/logs.md | 20 ++-- .../solving-problems/private-sonoma.md | 20 ++-- .../solving-problems/rule-limit.md | 26 ++--- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/general/browsing-security.md | 66 ++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../compatibility.md | 2 +- .../solving-problems/logs.md | 12 ++- .../extending-restricted-settings.md | 2 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/screen-time-issues.md | 2 +- .../solving-problems/logs.md | 12 ++- .../features/extensions.md | 54 +++++----- .../features/home-screen.md | 10 +- .../adguard-for-windows/features/others.md | 52 ++++----- .../adguard-for-windows/features/settings.md | 89 +++++++-------- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/general/browsing-security.md | 2 +- .../current/general/stealth-mode.md | 102 +++++++++--------- .../current/general/userscripts.md | 92 ++++++++-------- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 12 ++- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 12 ++- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 79 +++++++------- .../general/ad-filtering/filter-policy.md | 4 +- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/browser-assistant.md | 2 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 79 +++++++------- .../general/ad-filtering/filter-policy.md | 2 +- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../compatibility.md | 2 +- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 12 ++- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ .../current/general/stealth-mode.md | 102 +++++++++--------- .../current/general/userscripts.md | 4 +- .../solving-problems/logs.md | 6 +- .../solving-problems/har.md | 6 ++ .../solving-problems/log.md | 12 ++- .../solving-problems/logcat.md | 12 +++ .../solving-problems/logs.md | 6 +- .../adguard-for-windows/features/settings.md | 3 +- .../solving-problems/adguard-logs.md | 12 ++- .../solving-problems/dump-file.md | 6 ++ .../solving-problems/installation-logs.md | 6 ++ .../solving-problems/system-logs.md | 12 +++ .../ad-filtering/create-own-filters.md | 77 +++++++------ 419 files changed, 4372 insertions(+), 2032 deletions(-) diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/bn/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index 62f9be9bcf8..77040ecf24b 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Odesílání záznamů -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note -Po shromáždění záznamů postupujte podle následujících kroků a odešlete je našemu vývojovému týmu: +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. -1. Nahlaste chybu na [GitHub] (https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Odešlete archiv se záznamy a časem na adresu `devteam@adguard.com` a připojte odkaz na svůj problém na GitHubu. Archiv můžete také nahrát na Disk Google a místo přiložení souboru k němu přidat odkaz. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index e9c94ac20af..3ba9e418b51 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ Tento článek popisuje AdGuard pro Android, multifunkční blokátor reklam, kt ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## Co jsou soubory HAR? Formát HAR (HTTP ARchive) je archivní soubor ve formátu JSON pro zaznamenávání interakce webového prohlížeče s webem. Specifikace formátu HAR definuje archivační data pro transakce HTTP, která prohlížeč používá k exportu podrobných informací o načítaných webových stránkách. Podrobnější popis formátu HAR a jeho specifikace naleznete na webové stránce [ softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/). diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 5ad8f43bd56..bf42e32669e 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ Tento článek popisuje AdGuard pro Android, multifunkční blokátor reklam, kt ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + V tomto článku vás provedeme procesem shromažďování záznamů ladění, což je zásadní krok při řešení složitých problémů, které mohou nastat. Záznamy ladění poskytují podrobný náhled do vnitřního fungování AdGuardu pro Android. Pokud vás tým podpory AdGuardu požádá o poskytnutí záznamů ladění, postupujte podle těchto pokynů. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Shromažďování záznamů ladění diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 2ed5320f0e4..171e2cc53e2 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ Tento článek popisuje AdGuard pro Android, multifunkční blokátor reklam, kt ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Někdy nemusí běžný záznam stačit k identifikaci původu problému. V takových případech je nutný systémový záznam. Níže jsou uvedeny pokyny, jak je shromáždit a získat: prostřednictvím možností pro vývojáře a Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Zachycení hlášení o chybě ze zařízení Chcete-li získat hlášení o chybě přímo ze zařízení, postupujte takto: diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 3336e2ddd3c..af12b825504 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ K analýze a diagnostice různých problémů, které mohou nastat s AdGuardem p Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note -1. Otevřete [GitHub repozitář AdGuard pro Safari](https://github.com/AdguardTeam/AdGuardForSafari/issues) a klikněte na _New issue_. -2. Odešlete soubor se záznamem na devteam@adguard.com. Uveďte čas chyby a připojte odkaz na problém nebo jeho číslo (zobrazuje se jako #číslo vedle názvu). - Soubor se záznamem můžete také nahrát na Disk Google a odeslat jej na adresu devteam@adguard.com. Přidejte odkaz na soubor do svého problému na GitHubu. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. Uveďte čas chyby a připojte odkaz na problém nebo jeho číslo (zobrazuje se jako #číslo vedle názvu). + Soubor se záznamem můžete také nahrát na Disk Google a odeslat jej na adresu devteam@adguard.com. Add the file link to your GitHub issue. diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index f3a511bc8c7..c97021070aa 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ Zde můžete nastavit jazyk a motiv (tmavý nebo světlý), povolit spouštění Jedná se o hlavní modul AdGuardu pro Windows, který odstraňuje reklamy z navštívených webových stránek a aplikací nainstalovaných v zařízení. K filtrování reklam a obsahu ohrožujícího soukromí, jako jsou bannery, vyskakovací okna nebo slídiče, používá AdGuard různé filtry: skupiny pravidel s podobným účelem zapsané pomocí [speciální syntaxe](/general/ad-filtering/create-own-filters). Chcete-li pochopit, co jsou to filtry a jak fungují, přečtěte si [tento článek](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) V modulu Blokátor reklam můžete: - povolit automatickou aktivaci jazykově specifických filtrů, - deaktivovat blokování [reklam ve vyhledávání a vlastní propagaci](/general/ad-filtering/search-ads), +- disable ads in the Start menu on Windows 11, - aktivovat předinstalované filtry, jako je _AdGuard Base filtr_, - instalovat filtry ze seznamu nebo přidat vlastní filtr kliknutím na tlačítko _Přidat filtr_, - provádět změny ve stávajících skupinách pravidel pomocí tlačítka _Editor filtrů_, diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 4105fbda812..4b04c274ec6 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Tento článek popisuje AdGuard pro Windows, multifunkční blokátor reklam, kt ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + K analýze a diagnostice různých problémů, které mohou potenciálně nastat, může služba podpory AdGuard potřebovat soubory záznamů AdGuardu. Tyto soubory obsahují záznamy o chybách a dalších událostech, ke kterým došlo v softwaru. Níže je uveden stručný návod popisující způsoby, jak získat soubory záznamů a v případě potřeby je odeslat službě podpory. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 0a07e1de960..92294ac4511 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Tento článek popisuje AdGuard pro Windows, multifunkční blokátor reklam, kt ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + K diagnostice příčin možných problémů, se kterými se uživatelé mohou setkat při používání AdGuardu, může tým podpory potřebovat soubor výpisu procesu. Soubor výpisu pomáhá vývojářům zobrazit procesy, které byly v aplikaci v daném časovém období spuštěny. Níže se můžete podívat na pokyny, jak shromáždit soubor výpisu v PC. 1. Stiskněte **Ctrl + Shift + Esc** a klikněte na **Správce úloh** diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 85c0a9125bc..0863212a864 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Tento článek popisuje AdGuard pro Windows, multifunkční blokátor reklam, kt ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Pokud se během instalace AdGuardu vyskytnou nějaké problémy, tým podpory vás může požádat o shromáždění a zaslání záznamů o instalaci AdGuardu. V tomto případě je třeba: 1. V nabídce Start vyberte příkaz *Spustit* nebo na klávesnici stiskněte kombinaci kláves *Win + R*. diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index bf804ffd63e..fe071670e30 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Tento článek popisuje AdGuard pro Windows, multifunkční blokátor reklam, kt ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + K analýze a diagnostice různých problémů, které mohou potenciálně nastat, může služba podpory AdGuard potřebovat soubory záznamů Windows. Záznamy událostí systému Windows obsahují záznamy o všech chybách, které se vyskytnou v nainstalovaném softwaru, včetně AdGuardu. Níže je uveden stručný návod popisující způsoby, jak získat soubory záznamů a v případě potřeby je odeslat službě podpory. 1. Stiskněte *Win + R* @@ -36,3 +42,9 @@ K analýze a diagnostice různých problémů, které mohou potenciálně nastat - Vyberte cílovou složku, zadejte název a klikněte na *Uložit*. Vyberte *Zobrazit informace pro následující jazyky*. Musíte zaškrtnout políčko vedle *Angličtiny*. Klikněte na *OK*. Odešlete prosím dva soubory, které jste nedávno uložili na adresu **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 492d5014cc0..e66677ebeee 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 @@ -352,7 +352,8 @@ nebo kombinaci těchto tří: :::caution Omezení - Vzor shody pravidla se nemůže zaměřit na žádné konkrétní domény, např. nemůže začínat `||`. -- Domény v hodnotě modifikátoru nemohou být negovány, např. `$denyallow=~x.com`, nebo mít zástupný znak TLD, např. `$denyallow=x.*`. +- 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`. Pravidla, která tato omezení porušují, jsou považována za neplatná. @@ -450,7 +451,7 @@ Safari nepodporuje současné použití povolených a zakázaných domén, takž :::info Kompatibilita -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ Místo plného názvu modifikátoru můžete použít kratší název (alias): ` :::caution Omezení -[`$denyallow`](#denyallow-modifier) nelze použít společně s `$to`. Lze ji vyjádřit pomocí invertovaného `$to`: `$denyallow=a.com|b.com`, což je je ekvivalent k `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Zakáže modul Režim utajení pro všechny odpovídající stránky a požadavk $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` znamená určité možnosti Režimu utajení deaktivované modifikátorem. Modifikátor může obsahovat libovolný počet možností (viz níže) nebo žádnou. V druhém případě modifikátor vypne všechny funkce Režimu utajení. +`opt(i)` znamená určité možnosti Režimu utajení deaktivované modifikátorem. The modifier can contain any number of specific options (see below) or none. V druhém případě modifikátor vypne všechny funkce Režimu utajení. Seznam dostupných možností modifikátoru: @@ -961,13 +962,14 @@ Blokování cookies a odstranění sledovacích parametrů se provádí pomocí - Možnosti modifikátoru musí být psány malými písmeny, tj. `$stealth=DPI` budou zamítnuty. - Možnosti modifikátoru nelze negovat, tj. `$stealth=~3p-cookie` bude zamítnuto. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Kompatibilita -- Režim utajení je k dispozici v AdGuardu pro Windows, Mac, Android a Rozšíření prohlížeče AdGuard. Všechny ostatní produkty budou ignorovat pravidla s modifikátorem `$stealth`. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. Všechny ostatní produkty budou ignorovat pravidla s modifikátorem `$stealth`. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ Tyto modifikátory mohou zcela změnit chování základních pravidel. -| Modifikátor \ Produkty | [Aplikace CoreLibs][cl-apps] | [AdGuard pro Chromium][ext-chr] | [AdGuard pro Firefox][ext-ff] | [AdGuard pro iOS][ios-app] | [AdGuard pro Safari][ext-saf] | [Blokátor obsahu AdGuard][and-cb] | -| ------------------------------------------- |:----------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifikátor \ Produkty | [Aplikace CoreLibs][cl-apps] | [AdGuard pro Chromium][ext-chr] | [AdGuard pro Firefox][ext-ff] | [AdGuard pro iOS][ios-app] | [AdGuard pro Safari][ext-saf] | [Blokátor obsahu AdGuard][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — plně podporováno - ✅ * — podporováno, ale spolehlivost se může lišit nebo se mohou vyskytnout omezení; více informací naleznete v popisu modifikátoru - -- ⏳ — funkce, která byla implementována nebo jejíž implementace se plánuje, ale zatím není k dispozici v žádném produktu +- 🧩 — může být již implementováno ve verzích nightly nebo beta, ale není ještě podporováno ve verzích pro vydání + - ❌ — nepodporováno - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||example.org/page/*$permissions=autoplay=()` zakáže všechna pravidla s modifikátorem `$permissions` přesně odpovídajícím příznakem `autoplay=()` na všech stránkách odpovídajících vzoru pravidla. Např. výše uvedené pravidlo. 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` zakáže všechna pravidla `$permissions` na všech stránkách odpovídajících vzoru pravidla. - `$domain=example.org|example.com,permissions=storage-access=()\, camera=()` zakáže použití API pro přístup k úložišti pro vyžádání přístupu k nerozděleným souborům cookies a používání vstupních zařízení videa napříč `example.org` a `example.com`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` nebo `@@||example.org^$urlblock` zakáží všechna pravidla `$permission` na všech stránkách odpovídajících vzoru pravidla. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Omezení 1. Zakázané znaky v `$permissions` hodnotě: `$` -1. `$permissions` je kompatibilní se třemi typy modifikátorů: `$domain`, `$important` a `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Kompatibilita -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md index 2e824f62696..689c1722a37 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md @@ -1,5 +1,5 @@ --- -title: Compatibility with the standalone app +title: Kompatibilität mit der eigenständigen App sidebar_position: 4 --- @@ -9,9 +9,9 @@ In diesem Artikel geht es um die AdGuard Browsereweiterung, die nur Ihren Browse ::: -While AdGuard Browser Extension can block ads in browsers, [AdGuard standalone programs](/adguard-browser-extension/comparison-standalone) filter all the traffic on your device, including from browsers and apps. +Während die AdGuard Browser-Erweiterung Werbung in Browsern sperren kann, filtern das [eigenständige AdGuard-Programm](/adguard-browser-extension/comparison-standalone) den gesamten Datenverkehr auf Ihrem Gerät, einschließlich von Browsern und Apps. -If you decide to install both the extension and the standalone program on your PC, you may encounter some compatibility issues. The problem is that in some cases the application and the extension may interfere with each other. Some websites will no longer be protected by the desktop program and will only be protected by the extension, which has fewer options. Also, filtering may work incorrectly for some websites. Therefore, we don't recommend using the extension together with the application. +Wenn Sie sich entscheiden, sowohl die Erweiterung als auch das eigenständige Programm auf Ihrem PC zu installieren, kann es zu Kompatibilitätsproblemen kommen. Das Problem besteht darin, dass sich in manchen Situationen die Anwendung und die Erweiterung gegenseitig behindern können. Einige Websites werden nicht mehr durch das Desktop-Programm geschützt, sondern nur noch durch die Erweiterung, die weniger Optionen bietet. Also, filtering may work incorrectly for some websites. Therefore, we don't recommend using the extension together with the application. If you have the desktop version of AdGuard installed on your PC, it is better to use AdGuard Browser Assistant instead of the extension. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index a9d6b5a83a8..6e88ab11bac 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Einreichen der Protokolle -> AdGuard ist dem Schutz Ihrer Privatsphäre verpflichtet. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Bevor Sie Ihre Protokolle an das Support-Team senden, überprüfen Sie bitte die Datei, da sie zusätzliche Informationen enthalten kann, die Sie vielleicht nicht freigeben möchten. Wenn sie solche persönlichen Informationen enthält, empfehlen wir Ihnen, sie zuerst zu löschen. +:::note -Nachdem Sie die Protokolle zusammengestellt haben, folgen Sie bitte diesen Schritten, um diese an unser Entwicklungsteam zu übermitteln: +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. -1. Melden Sie den Fehler auf [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Senden Sie Ihr Archiv mit den Protokollen und der Aufzeichnungszeit an „devteam@adguard.com“ und fügen Sie einen Link zu Ihrem GitHub-Problem hinzu. Sie können das Archiv auch in Google Drive hochladen und den Link hinzufügen, anstatt die Datei anzuhängen. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index d2540ff9e76..fc679fc9730 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ Dieser Artikel behandelt AdGuard für Android, einem multifunktionalen Werbebloc ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 71e1a971fec..c45675953a9 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ Dieser Artikel behandelt AdGuard für Android, einem multifunktionalen Werbebloc ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard ist dem Schutz Ihrer Privatsphäre verpflichtet. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Bevor Sie Ihre Protokolle an das Support-Team senden, überprüfen Sie bitte die Datei, da sie zusätzliche Informationen enthalten kann, die Sie vielleicht nicht freigeben möchten. Wenn sie solche persönlichen Informationen enthält, empfehlen wir Ihnen, sie zuerst zu löschen. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log 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 8792ffd864b..0e318c878e8 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 @@ -9,7 +9,19 @@ Dieser Artikel behandelt AdGuard für Android, einem multifunktionalen Werbebloc ::: -Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + +Manchmal reicht ein einfaches Protokoll nicht aus, um die Ursache des Problems zu ermitteln. In solchen Fällen ist ein Systemprotokoll erforderlich. Nachfolgend finden Sie eine Anleitung zum Zusammenstellen und Abrufen der Daten: über die Entwickleroptionen und Logcat. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ## Capture a bug report from a device diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 86f4a53ec2b..9cd40a3d16e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ Zur Analyse und Diagnose verschiedener Probleme, die mit AdGuard für Safari auf Jetzt können Sie diese Datei an support@adguard.com senden oder sie an Ihren Fehlerbericht auf GitHub anhängen. -> AdGuard ist dem Schutz Ihrer Privatsphäre verpflichtet. Wir halten uns strikt an unsere [Datenschutzerklärung](https://adguard.com/privacy/safari.html) und sammeln keine privaten Informationen über Nutzer:innen. Bevor Sie Ihre Protokolle an das Support-Team senden, überprüfen Sie bitte die Datei, da sie zusätzliche Informationen enthalten kann, die Sie vielleicht nicht freigeben möchten. Wenn sie solche persönlichen Informationen enthält, empfehlen wir Ihnen, sie zuerst zu löschen. +:::note -1. Öffnen Sie das [AdGuard für Safari GitHub Repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) und klicken Sie auf _New issue_. -2. Senden Sie die Protokolldatei an devteam@adguard.com. Geben Sie die Uhrzeit des Fehlers an und fügen Sie einen Link zu Ihrem Problem oder dessen Nummer hinzu (sie wird neben dem Titel als #Nummer angezeigt). - Alternativ können Sie die Protokolldatei auch auf Google Drive hochladen und an devteam@adguard.com senden. Fügen Sie den Dateilink zu Ihrem GitHub-Problem hinzu. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. Geben Sie die Uhrzeit des Fehlers an und fügen Sie einen Link zu Ihrem Problem oder dessen Nummer hinzu (sie wird neben dem Titel als #Nummer angezeigt). + Alternativ können Sie die Protokolldatei auch auf Google Drive hochladen und an devteam@adguard.com senden. Add the file link to your GitHub issue. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 99291970734..591ca9afb3b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Wenn Sie ein Dies ist das Hauptmodul von AdGuard für Windows, das Werbung von den von Ihnen besuchten Websites und von den auf Ihrem Gerät installierten Apps entfernt. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) Im Werbeblocker-Modul können Sie: - die automatische Aktivierung von sprachspezifischen Filtern ermöglichen, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index b45a0935371..d5694a2873a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Dieser Artikel behandelt AdGuard für Windows, einem multifunktionalen Werbebloc ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Zur Analyse und Diagnose verschiedener Probleme, die möglicherweise auftreten können, benötigt der AdGuard-Support möglicherweise AdGuard-Protokolldateien. These files contain records about errors and other events that occurr with the software. Nachfolgend finden Sie eine kurze Anleitung, wie Sie die Protokolldateien abrufen und gegebenenfalls an den Support-Dienst senden können. -> AdGuard ist dem Schutz Ihrer Privatsphäre verpflichtet. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Bevor Sie Ihre Protokolle an das Support-Team senden, überprüfen Sie bitte die Datei, da sie zusätzliche Informationen enthalten kann, die Sie vielleicht nicht freigeben möchten. Wenn sie solche persönlichen Informationen enthält, empfehlen wir Ihnen, sie zuerst zu löschen. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 6ac84d5f56e..00626f2ed07 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Dieser Artikel behandelt AdGuard für Windows, einem multifunktionalen Werbebloc ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Zur Diagnose von Problemen, die bei der Verwendung von AdGuard auftreten können, benötigt das Support-Team möglicherweise die Prozessabbilddatei (Dump-Datei). Die Dump-Datei hilft Entwickler:innen, die Prozesse zu sehen, die in der App über einen bestimmten Zeitraum ausgeführt wurden. Nachfolgend finden Sie eine Anleitung zur Erstellung der Dump-Datei auf Ihrem PC. 1. Drücken Sie **Strg + Umschalt + Esc**, um den **Task Manager** zu öffnen diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index ab582c55918..f235773745e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Dieser Artikel behandelt AdGuard für Windows, einem multifunktionalen Werbebloc ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index 781ae67f7d8..eaec1b1241a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Dieser Artikel behandelt AdGuard für Windows, einem multifunktionalen Werbebloc ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Nachfolgend finden Sie eine kurze Anleitung, wie Sie die Protokolldateien abrufen und bei Bedarf an unseren Kundenservice senden können. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Klicken Sie auf *OK*. Bitte senden Sie die beiden Dateien, die Sie soeben gespeichert haben, an **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 cf87ec673cb..353f80cbfcc 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Kompatibilität -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Kompatibilität -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifikator \ Produkte | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard für iOS][ios-app] | [AdGuard für Safari][ext-saf] | [AdGuard-Inhaltsblocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:--------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifikator \ Produkte | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard für iOS][ios-app] | [AdGuard für Safari][ext-saf] | [AdGuard-Inhaltsblocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:--------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Kompatibilität -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md index 32fd3160e66..c4e4da985dd 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md @@ -62,7 +62,7 @@ Das Ziel von Werbeblockern ist es, alle Arten von Werbung auf Websites, in Apps - Interstitial-Anzeigen — bildschirmfüllende Werbung auf mobilen Geräten, die die Oberfläche der App oder des Webbrowsers verdeckt - Anzeigenreste, die große Flächen einnehmen oder sich deutlich von ihrem Hintergrund abheben und die Aufmerksamkeit der Besucher:innen auf sich ziehen (außer kaum erkennbaren oder unauffälligen) - Anti-Adblock-Werbung — alternative Werbung, die auf der Website angezeigt wird, wenn die Hauptwerbung blockiert ist -- Bait elements that are used by multiple known adblock detection scripts to detect an ad blocker presence for different goals including changing the way ads are shown, fingerprinting, etc. +- Köderelemente, die von mehreren bekannten Adblock-Erkennungsskripten verwendet werden, um das Vorhandensein eines Werbeblockers für verschiedene Ziele zu erkennen, einschließlich der Änderung der Art und Weise, wie Werbung angezeigt wird, Fingerprinting usw. - Website-eigene Werbung, wenn sie durch allgemeine Filterregeln gesperrt wurde (siehe *Beschränkungen und Ausnahmen*) - Anti-Adblock-Skripte, die die Nutzung der Website verhindern (siehe *Beschränkungen und Ausnahmen*) - Werbung, die durch Malware eingeschleust wird, wenn detaillierte Informationen über die Art des Ladens oder die Schritte zur Reproduktion bereitgestellt werden @@ -114,7 +114,7 @@ Was genau wird durch diesen Filter blockiert? - Tracking-Cookies - Zählpixel - Tracking-APIs von Browsern -- Detection of the ad blocker for tracking purposes +- Erkennung des Werbeblockers zu Trackingzwecken - Datenschutz-Sandbox-Funktionalität in Google Chrome und seine Ableger, die für das Tracking verwendet werden (Google Topics API, Protected Audience API) Der **URL-Tracking-Filter** wurde entwickelt, um Tracking-Parameter aus Webadressen zu entfernen diff --git a/i18n/de/docusaurus-plugin-content-docs/current/intro.md b/i18n/de/docusaurus-plugin-content-docs/current/intro.md index a0550606488..567ee17b577 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/intro.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/intro.md @@ -1,5 +1,5 @@ --- -title: Overview +title: Übersicht sidebar_position: 1 slug: / --- diff --git a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/filters.md b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/filters.md index 6f9c718455b..bb41da21177 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/filters.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/filters.md @@ -13,7 +13,7 @@ Websites ändern ständig die Art und Weise, wie sie Anzeigen einbetten, und wir Die Arbeit mit blockierenden Filtern erfordert jedoch spezifische Fähigkeiten. Wenn Sie diese haben und wissen, wie man Regeln erstellt, dann gehen Sie direkt zu unserem [AdGuard Filters Repository](https://github.com/AdguardTeam/AdguardFilters) auf GitHub. Dort finden Sie viele offene Probleme (issues), die jeweils auf ein Problem mit einer Website verweisen – eine verpasste Anzeige, ein falsch positives Ergebnis usw. Wählen Sie beliebige aus und schlagen Sie Ihre eigenen Regeln in den Kommentaren vor. AdGuard-Filteringenieure prüfen Ihre Vorschläge und wenn sie sie für angemessen halten, werden Ihre Regeln zu AdGuard-Filtern hinzugefügt. -If you are not yet familiar with our filtering rule syntax, or maybe need a refresher, you'll find the basics about the syntax [in our Knowledge base](/general/ad-filtering/create-own-filters). +Wenn Sie mit der Syntax unserer Filterregeln noch nicht vertraut sind oder vielleicht eine Auffrischung benötigen, finden Sie die Grundlagen der Syntax [in unserer Wissensdatenbank](/general/ad-filtering/create-own-filters). ### Belohnung {#rewards} diff --git a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/plural-forms.md b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/plural-forms.md index f6dbd2c4c76..c62812fd598 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/plural-forms.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/plural-forms.md @@ -14,7 +14,7 @@ Substantive in verschiedenen Sprachen können mehrere Wortformen im Plural haben Zum Beispiel haben englische Wörter zwei Wortformen, wenn man über etwas im Singular spricht, wie *„one star“*, und im Plural — *„two stars“*. Es spielt keine Rolle, ob Sie fünf, sechsundzwanzig oder sogar fünfhundertzweiunddreißig Sterne sagen — die Endung „s“ bleibt dieselbe. Einige Sprachen können jedoch nur eine oder mehrere Pluralformen enthalten. -Im Gegensatz zum Englischen gibt es in der polnischen Sprache drei Substantivformen im Plural. One of them is used when speaking about something in the singular, another form is used in the plural but with numbers ending in 2–4, excluding 12–14, and the third form — for words with other numbers in front of them. +Im Gegensatz zum Englischen gibt es in der polnischen Sprache drei Substantivformen im Plural. Eine davon wird verwendet, wenn man über etwas in der Einzahl spricht, eine andere Form wird im Plural verwendet, aber mit Zahlen, die auf 2-4 enden, außer 12-14, und die dritte Form - für Wörter mit anderen Zahlen vor ihnen. Schauen wir uns dieses Bild an. Hier sieht man die Zahlengruppen, die eine Wortform bestimmen, wenn sie davor stehen. @@ -38,7 +38,7 @@ Wenn Sie eine Phrase mit Pluralformen übersetzen, können Sie möglicherweise n Hier sind einige Informationsquellen, die Sie verwenden können. -[Localization Guide](http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html) enthält eine umfangreiche Liste von Sprachen. The number of plural forms for different languages is shown this way: `nplurals=2`, `nplurals=4` and so on. The numeral after the Equals sign `=` means the number of plural forms of the respective language. +[Localization Guide](http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html) enthält eine umfangreiche Liste von Sprachen. Die Anzahl der Pluralformen für die verschiedenen Sprachen wird auf diese Weise dargestellt: `nplurals=2`, `nplurals=4` und so weiter. Die Zahl nach dem Gleichheitszeichen `=` gibt die Anzahl der Pluralformen der jeweiligen Sprache an. Informationen zu Pluralformen finden Sie auch im [Unicode Common Locale Data Repository](http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#rules) (CLDR). Die CLDR-Pluralregeln geben eine zusätzliche Wortform für Dezimalzahlen an (1,5; 2,3; 100,1…), aber wir verwenden sie nicht in AdGuard-Übersetzungen. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/translation-priority.md b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/translation-priority.md index cdedacc010b..f2e9d1e639d 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/translation-priority.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/contribute/translate/translation-priority.md @@ -32,4 +32,4 @@ Anders verhält es sich bei dem Projekt *AdGuard Websites* . Sprachen können de Das Hinzufügen neuer und das Aktualisieren bestehender Zeichenfolgen in diesen Dateien erfordert besondere Aufmerksamkeit von den Übersetzer:innen und Korrekturleser:innen. -In addition to websites, there is a file for translating [transactional emails](https://crowdin.com/project/adguard-websites/en#/emails) in the AdGuard Websites project. Neu hinzugefügte Zeichenfolgen in dieser Datei haben ebenfalls eine hohe Übersetzungspriorität. +Zusätzlich zu den Websites gibt es im Projekt AdGuard Websites eine Datei zur Übersetzung von [Transaktions-E-Mails](https://crowdin.com/project/adguard-websites/en#/emails). Neu hinzugefügte Zeichenfolgen in dieser Datei haben ebenfalls eine hohe Übersetzungspriorität. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index d73f8cdae34..4269d9e304c 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Enviar registros -> AdGuard se compromete a proteger tu privacidad. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Antes de enviar tus registros al equipo de soporte, revisa el archivo, ya que puede contener información adicional que no deseas compartir. Si contiene información personal, te recomendamos que la elimines primero. +:::note -Ahora que has recopilado los registros, sigue estos pasos para enviarlos a nuestro equipo de desarrollo: +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. -1. Informa el error en [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Envía tu archivo con los registros y el tiempo de reproducción a `devteam@adguard.com` y añade un enlace a tu GitHub issue. También puedes cargar el archivo en Google Drive y agregarle el enlace en lugar de adjuntar el archivo. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index eff82e638a1..08d10ceb5b7 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + En este artículo, te guiaremos a través del proceso de recopilación de registros de depuración, un paso de solución de problemas esencial para resolver problemas complejos que puedan surgir. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard se compromete a proteger tu privacidad. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Antes de enviar tus registros al equipo de soporte, revisa el archivo, ya que puede contener información adicional que no deseas compartir. Si contiene información personal, te recomendamos que la elimines primero. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 509b8b5f445..95e39b0e4ce 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 4f84277d74b..c840a476d2a 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ Para analizar y diagnosticar diversos problemas que pueden ocurrir con AdGuard p Ahora puedes enviar este archivo a support@adguard.com o adjuntarlo a tu informe de error en GitHub. -> AdGuard se compromete a proteger tu privacidad. Seguimos estrictamente nuestra [Política de Privacidad](https://adguard.com/privacy/safari.html) y no recopilamos ninguna información privada sobre los usuarios. Antes de enviar tus registros al equipo de soporte, revisa el archivo, ya que puede contener información adicional que no deseas compartir. Si contiene información personal, te recomendamos que la elimines primero. +:::note -1. Abre el [repositorio GitHub de AdGuard para Safari](https://github.com/AdguardTeam/AdGuardForSafari/issues) y haz clic en _New issue_. -2. Envía el archivo de registro a devteam@adguard.com. Incluye la hora del error y adjunta un enlace a tu issue o su número (aparece como #número junto al título). - Alternativamente, puedes transferir el archivo de registro en Google Drive y enviarlo a devteam@adguard.com. Agrega el enlace del archivo a tu problema de GitHub. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). + Alternatively, you can upload the log file to Google Drive and send it to devteam@adguard.com. Add the file link to your GitHub issue. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 262a319434e..891de3943c2 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 1c98a7c68ee..ff9e2efb65d 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Este artículo trata sobre AdGuard para Windows, un bloqueador de anuncios multi ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard se compromete a proteger tu privacidad. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Antes de enviar tus registros al equipo de soporte, revisa el archivo, ya que puede contener información adicional que no deseas compartir. Si contiene información personal, te recomendamos que la elimines primero. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index de488a203d9..976d26975da 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Este artículo trata sobre AdGuard para Windows, un bloqueador de anuncios multi ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 0c0853ade41..046e2f8dfbb 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Este artículo trata sobre AdGuard para Windows, un bloqueador de anuncios multi ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index bfadb7f4457..40b532821c1 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Este artículo trata sobre AdGuard para Windows, un bloqueador de anuncios multi ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 9cc07776673..5123ad6deda 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard para iOS][ios-app] | [AdGuard para Safari][ext-saf] | [Bloqueador de contenido AdGuard][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:---------------------------:|:------------------------------:|:-----------------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard para iOS][ios-app] | [AdGuard para Safari][ext-saf] | [Bloqueador de contenido AdGuard][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:---------------------------:|:------------------------------:|:-----------------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: 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 b0bf865741e..ae236437d93 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 @@ -3,74 +3,74 @@ title: Protección contra phishing y malware sidebar_position: 3 --- -Falling prey to phishing and malware remains a common issue. To enhance digital security, we’ve incorporated special filters in AdGuard products to shield you from malicious and phishing websites. To date, we’ve categorized over 15 million sites and built a database of 1.5 million websites known for phishing and malware. Using this database, AdGuard checks the websites you visit to protect you from online threats. +Ser víctima de phishing y malware sigue siendo un problema común. Para mejorar la seguridad digital, hemos incorporado filtros especiales en los productos AdGuard para protegerte de sitios web maliciosos y de phishing. Hasta hoy, hemos categorizado más de 15 millones de sitios y creado una base de datos de 1,5 millones de sitios web conocidos por phishing y malware. Al utilizar esta base de datos, AdGuard verifica los sitios web que visitas para protegerte de amenazas en línea. ::: note -We strictly do not collect or use any information about the websites you visit. +Estrictamente no recopilamos ni utilizamos ninguna información sobre los sitios web que visitas. ::: -## How does AdGuard check websites?​ +## ¿Cómo AdGuard verifica los sitios web? -Each time you visit a website, your local client exchanges information with our backend server in the form of hashes and hash prefixes. Based on this exchange, the local client determines whether or not the website is listed in the potentially dangerous websites database. There is a difference in the scope of this check for apps and extensions. +Cada vez que visitas un sitio web, tu cliente local intercambia información con nuestro servidor backend en forma de hash y prefijos hash. En base a este intercambio, el cliente local determina si el sitio web figura o no en la base de datos de sitios web potencialmente peligrosos. Hay una diferencia en el alcance de esta verificación para aplicaciones y extensiones. -### In apps +### En apps -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 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. -![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png) +![Advertencia de DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png) -### In browser extensions +### En las extensiones de navegador -Our browser extensions can only check domain names, not full URLs. 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. +Nuestras extensiones de navegador solo pueden verificar nombres de dominio, no URL completas. Tampoco pueden verificar subconsultas. Esto significa que, si hay elementos potencialmente maliciosos en la página, se cargarán incluso si la página pertenece a un dominio seguro. La extensión no podrá protegerte contra ellos. También es importante tener en cuenta que la verificación realizada es sincrónica, es decir, ocurre al mismo tiempo que se carga la página, por lo que es posible que también se cargue malware. -## Setting up phishing and malware protection in AdGuard products +## Configuración de la protección contra phishing y malware en los productos AdGuard -- **For Windows**: Activate the *Browsing Security* module in the *Settings* menu +- **Para Windows**: activa el módulo *Seguridad de navegación* en el menú *Configuración* -![Browsing Security in Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png) +![Seguridad de navegación en Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png) -- **For Mac**: Enable the *Security* module in *Preferences* +- **Para Mac**: habilitq el módulo *Seguridad* en *Preferencias* -![Security in Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png) +![Seguridad en Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png) -- **For Android**: Turn on *Browsing Security* in the *Protection* tab +- **Para Android**: activa *Seguridad de navegación* en la pestaña *Protección* -![Browsing security in Android *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_android.png) +![Seguridad de navegación en 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. Additionally, enable *DNS protection* and select one of the AdGuard DNS servers +- **Para iOS**: Aunque no existe un módulo independiente, puedes ir a *Protección* → *Filtros* → *Seguridad* de *Safari* y activar los filtros disponibles. Además, habilita *Protección DNS* y selecciona uno de los servidores DNS de AdGuard -![Security in iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg) +![Seguridad en iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg) -- **For Browser extensions**: Enable *Phishing and malware protection* in the *Settings* tab. For enhanced protection, go to *Filters* → *Security* and activate available filters +- **Para extensiones de navegador**: habilita *Protección contra phishing y malware* en la pestaña *Configuración*. Para una protección mejorada, ve a *Filtros* → *Seguridad* y activa los filtros disponibles ![Protección contra phishing y malware](https://cdn.adtidy.org/content/kb/ad_blocker/general/extension_protection.png) -- **For Private AdGuard DNS:** Enable malware protection in *Server settings* under *Security* +- **Para DNS privado de AdGuard:** Habilita la protección contra malware en *Configuración del servidor* en *Seguridad* -![Security in DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) +![Seguridad en DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) -## What we block +## Lo que bloqueamos -We maintain two primary filters: one that protects against phishing and fraudulent websites that attempt to steal user credentials, and another that blocks access to websites known to distribute malware, which could lead to data loss, information leaks, or damage to your device. These filters also protect you from websites with various scams and fraudulent schemes. For more detailed information, refer to this [Wikipedia article](https://en.wikipedia.org/wiki/Phishing). +Mantenemos dos filtros principales: uno que protege contra phishing y sitios web fraudulentos que intentan robar las credenciales de los usuarios, y otro que bloquea el acceso a sitios web conocidos por distribuir malware, lo que podría provocar pérdida de datos, fugas de información o daños a tu dispositivo. Estos filtros también te protegen de sitios web con diversas estafas y esquemas fraudulentos. Para obtener información más detallada, consulta este [artículo de Wikipedia](https://en.wikipedia.org/wiki/Phishing). -## Maintaining our filters +## Mantenimiento de nuestros filtros -AdGuard maintains an extensive database of phishing and malware websites, and it’s updated regularly and automatically as new threats are discovered. We collect information from a variety of reliable, high-quality sources, both public and from other companies, and aggregate it into a common database of dangerous sites. +AdGuard mantiene una extensa base de datos de sitios web de phishing y malware, y se actualiza de forma periódica y automática a medida que se descubren nuevas amenazas. Recopilamos información de una variedad de fuentes confiables y de alta calidad, tanto públicas como de otras empresas, y la agregamos a una base de datos común de sitios peligrosos. -We automatically analyze complaints about suspicious sites and spend a great deal of time keeping the database up-to-date, cleaning up false positives, and implementing mechanisms to prevent them in the future. +Analizamos automáticamente las quejas sobre sitios sospechosos y dedicamos mucho tiempo a mantener actualizada la base de datos, limpiando falsos positivos e implementando mecanismos para prevenirlos en el futuro. -### Want to help?​ +### ¿Quieres ayudar? -Any help is welcome! If you encounter a phishing or malware website, please report it to . +¡Toda ayuda es bienvenida! Si encuentras un sitio web de phishing o malware, infórmalo a . -### False-positive responses​ +### Falsos positivos​ -Occasionally, some non-malicious websites are added to AdGuard’s filters. Hacemos todo lo posible para reducir el porcentaje de falsos positivos, pero aún así ocurren. If you encounter this behavior from AdGuard, please report the false positive to our technical support at . +Ocasionalmente, se agregan algunos sitios web no maliciosos a los filtros de AdGuard. Hacemos todo lo posible para reducir el porcentaje de falsos positivos, pero aún así ocurren. Si encuentras este comportamiento de AdGuard, por favor reporta el falso positivo a nuestro soporte técnico en . -## If you are suspicious about a website +## ¿Sospechas de un sitio web? -If you suspect that a certain website might be dangerous, check it first by using our [security check tool](https://reports.adguard.com/welcome.html). +Si sospechas que un determinado sitio web puede ser peligroso, verifícalo primero utilizando nuestra [herramienta de control de seguridad](https://reports.adguard.com/welcome.html). -![Security check](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) +![Control de seguridad](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/how-to-install.md b/i18n/es/docusaurus-plugin-content-docs/current/general/how-to-install.md index 9a23fa85f1b..25bbb8aaf66 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/general/how-to-install.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/general/how-to-install.md @@ -1,9 +1,9 @@ --- -title: How to install AdGuard +title: Cómo instalar AdGuard sidebar_position: 8 --- -Depending on which AdGuard app or browser extension you want to install, follow one of these links to find the relevant article: +Dependiendo de la aplicación AdGuard o de la extensión del navegador que desee instalar, siga uno de estos enlaces para encontrar el artículo correspondiente: [AdGuard para Android](/adguard-for-android/installation) 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 cfd1eb1372f..f49000b52d2 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 @@ -3,120 +3,120 @@ title: Modo sigiloso 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. +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. -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. +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. -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**. +A continuación, enumeraremos y describiremos las principales características y opciones que puedes controlar en la configuración del **Modo sigiloso**. Se dividen en cuatro grupos: **General**, **Métodos de seguimiento**, **API del navegador** y **Varios**. :::note -Some options may not be available depending on the particular product due to OS or other limitations. +Es posible que algunas opciones no estén disponibles según el producto en particular debido al sistema operativo u otras limitaciones. ::: ## General {#general} -### Hide your search queries {#searchqueries} +### Ocultar tus consultas de búsqueda {#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. +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. -### Ask websites not to track you {#donottrack} +### Pedir a los sitios web que no te rastreen {#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. +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. -### Strip tracking parameters from URLs +### Eliminar los parámetros de seguimiento de las URL -If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs. +Si habilitas esta opción, AdGuard eliminará parámetros de seguimiento como `utm_*` y `fb_ref` de las URL de las páginas. -### Tracking methods {#tracking-methods} +### Métodos de seguimiento {#tracking-methods} -### Self-destruction of third-party cookies {#3p-cookie} +### Autodestrucción de cookies de terceros {#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. +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. -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. +Las cookies de terceros son aquellas implementadas por un sitio web diferente al que estás navegando actualmente. Por ejemplo, cnn.com puede tener un widget "Me gusta" de Facebook en tu página de inicio. Este widget implementará una cookie que Facebook podrá leer más adelante. Algunos anunciantes utilizan este tipo de cookies para rastrear qué otros sitios donde se colocan sus anuncios visitas. -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. +Establece un periodo de tiempo (en minutos) al final del cual se destruirán todas las cookies de terceros. Pon el temporizador en 0 para bloquearlos por completo. :::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). +Esta configuración elimina todas las cookies de terceros, incluida la información de tus inicios de sesión a través de redes sociales u otros servicios de terceros. Es posible que tengas que volver a iniciar sesión periódicamente en algunos sitios web y que se enfrente a otros problemas relacionados con las cookies. Para bloquear solo las cookies de seguimiento, utiliza [*Filtro de protección de seguimiento de AdGuard*](/general/ad-filtering/filter-policy/#tracking-protection-filter). ::: -### Self-destruction of first-party cookies {#1p-cookie} +### Autodestrucción de cookies de origen {#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. +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. :::caution -We do not recommend enabling this option as it may severely interfere with the work of certain websites. +No recomendamos habilitar esta opción ya que puede interferir gravemente con el trabajo de ciertos sitios web. ::: -### Disable cache for third-party requests {#3p-cache} +### Desactivar caché para solicitudes de terceros {#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. +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. -### Block third-party Authorization header {#3p-auth} +### Bloquear encabezado de autorización de terceros {#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. +El navegador almacena en caché el valor del encabezado "Autorización" y luego se envía junto con cada solicitud a ese dominio. Esto significa que se puede utilizar con fines de seguimiento al igual que las cookies. -## Browser API {#browser-api} +## API del navegador {#browser-api} -### Block WebRTC {#webrtc} +### Bloquear WebRTC {#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) es una tecnología que permite la transmisión directa de datos entre navegadores y aplicaciones. Puede permitir que otros sepan tu verdadera dirección IP, incluso si usas un proxy o VPN. Habilitar esta opción puede interrumpir el funcionamiento de determinadas aplicaciones del navegador, como mensajería, chats, cines o juegos. -### Block Push API {#push} +### Bloquear API Push {#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. +Push API permite a los servidores enviar mensajes a aplicaciones web independientemente del estado de actividad de tu navegador. Por lo tanto, es posible que veas notificaciones de varios sitios web incluso si tu navegador está oculto en la bandeja o no está iniciado. Habilita esta opción para bloquear completamente la Push API del navegador. -### Block Location API {#location} +### Bloquear API de ubicación {#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. +Habilitar esta opción evitará que el navegador envíe datos de GPS que podrían usarse para determinar tu ubicación, modificar tus resultados de búsqueda o influir de otra manera en tu experiencia web. -### Block Flash {#flash} +### Bloquear Flash {#flash} -The Flash Player plugin has become increasingly vulnerable to such online threats as viruses and hackers; it may also significantly affect website loading time. 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. +El complemento Flash Player se ha vuelto cada vez más vulnerable a amenazas en línea como virus y hackers; También puede afectar significativamente el tiempo de carga del sitio web. Al activar esta configuración, AdGuard bloquea la capacidad de los navegadores para detectar componentes (como complementos y objetos ActiveXObject) que permiten que Flash muestre contenido. En la práctica, esto significa que los navegadores no son compatibles con Flash. -### Block Java {#java} +### Bloquear Java {#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. +Algunos sitios web y servicios web todavía utilizan la tecnología antigua para admitir complementos de Java. La API del complemento de Java, que es la base de los complementos de Java, tiene graves fallas de seguridad. Por motivos de seguridad, puedes desactivar los dichos complementos. Sin embargo, incluso si decides utilizar la opción "Bloquear Java", JavaScript seguirá habilitado. ## Misceláneo {#miscellaneous} -### Hide Referer from third parties {#referer} +### Ocultar Referer de terceros {#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. +Referer es un encabezado HTTP utilizado en solicitudes de navegador a servidor. Contiene la URL del origen de la petición. Cuando navegas de una página a otra, el Referer guarda la URL de la página inicial. El servidor que aloja la página web de destino suele tener un software que analiza Referer y extrae diversos datos de él. Al habilitar la opción *Ocultar referer de terceros*, se oculta el sitio web actual de sitios de terceros alterando el encabezado HTTP. -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. +También puedes establecer un valor arbitrario para Referer ingresándolo en el campo *Personalizar Referer*. Para utilizar el Referer predeterminado, deja el campo en blanco. -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. +Ten en cuenta que para poder filtrar el tráfico, las aplicaciones AdGuard "interceptan" las solicitudes del navegador al servidor. Las solicitudes a servidores de publicidad, seguimiento y phishing pueden modificarse antes de enviarlas al servidor o bloquearse por completo. Lo mismo ocurre con la opción *Ocultar Referer de terceros*: AdGuard intercepta solicitudes HTTP(S), en particular para eliminar o cambiar el encabezado Referer si esta opción está habilitada. Sin embargo, esto ocurre sólo después de que estas solicitudes “abandonan” el navegador. Esto significa que, si monitoreas el Referer dentro del navegador (por ejemplo, con la ayuda de las herramientas de desarrollo de Chrome), verás el Referer original porque la solicitud aún no ha llegado a AdGuard. Puedes utilizar software como [Fiddler](https://www.telerik.com/fiddler) para asegurarte de que Referer se modifique correctamente. -On the opposite, 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. +Por el contrario, debido a la naturaleza de todas las extensiones del navegador, la extensión de navegador AdGuard funciona "dentro" del navegador. Modificará el Referer en ese mismo momento, por lo que Developer Tools mostrará el Referer deseado para tus peticiones. -### Hide your User-Agent {#useragent} +### Ocultar tu 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. +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. -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. +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. -### Hide your IP address {#ip} +### Enmascarar tu dirección IP {#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. +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. -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. +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. -### Remove X-Client-Data header from HTTP requests {#xclientdata} +### Eliminar encabezado X-Client-Data de las peticiones HTTP {#xclientdata} -It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics). +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). -### Protect from DPI {#dpi} +### Proteger de 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. +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. -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 puede modificar los datos de los paquetes salientes para que el cliente no entre en los criterios de bloqueo de DPI. Esto significa que, al habilitar esta opción, los usuarios pueden acceder al contenido que desean. No todos los sistemas DPI se pueden omitir en este momento, pero trabajamos constantemente para mejorarlo. -The "Protect from DPI" feature is already implemented in AdGuard for Windows, AdGuard for Mac, and AdGuard for Android. +La función "Proteger de DPI" ya está implementada en AdGuard para Windows, AdGuard para Mac y AdGuard para Android. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/general/userscripts.md b/i18n/es/docusaurus-plugin-content-docs/current/general/userscripts.md index 40fb396d927..5c5985c0f9e 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/general/userscripts.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/general/userscripts.md @@ -4,105 +4,105 @@ sidebar_position: 5 toc_max_heading_level: 4 --- -Userscripts (we also call them "extensions") are, de-facto, mini-programs written in JavaScript. They modify or extend the functionality of one or more websites. Many AdGuard users may be already familiar with such userscripts as AdGuard Assistant, Popup Blocker, and AdGuard Extra. +Los scripts de usuario (también los llamamos "extensiones") son, de hecho, miniprogramas escritos en JavaScript. Modifican o amplían la funcionalidad de uno o más sitios web. Es posible que muchos usuarios de AdGuard ya estén familiarizados con scripts de usuario como AdGuard Assistant, Popup Blocker y AdGuard Extra. -:::note Supported apps +:::note Aplicaciones compatibles -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 puede ampliar significativamente la funcionalidad del sitio web al actuar como administrador de scripts de usuario. Puedes agregar tus scripts personalizados o administrar los existentes en nuestros tres productos: [AdGuard para Windows](/adguard-for-windows/features/extensions), [AdGuard para Android](/adguard-for-android/features/settings#userscripts)y [ y AdGuard para Mac](/adguard-for-mac/features/extensions). ::: -## Recommended AdGuard scripts +## Scripts de AdGuard recomendados -These userscripts come directly from the AdGuard developers, and we can guarantee that they are effective and safe. 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 expose yourself to a certain risk, as some scripts may be harmful to your computer. +Estos scripts de usuario provienen directamente de los desarrolladores de AdGuard y podemos garantizar que son efectivos y seguros. Para algunos de los scripts de usuario desarrollados por terceros que consideramos buenos y confiables, [desplázate hacia abajo hasta la siguiente sección](#top-picks). También puedes encontrar algunos de los [sitios web populares con scripts](#more-userscripts) a continuación, pero recuerda que cada vez que descargas un script de usuario de una fuente desconocida, te expones a cierto riesgo, ya que algunos scripts pueden ser dañinos a tu computadora. ### AdGuard Extra -An extension that blocks ads in difficult cases when the usual filter-based approach is not enough. AdGuard Extra comes pre-installed with all premium AdGuard versions, so you don't need to do anything to enable it. However, if you want to use it alongside AdGuard Browser Extension or any other ad blocker, you'll need to use an additional extension. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/AdGuardExtra). +Una extensión que bloquea anuncios en casos difíciles cuando el enfoque habitual basado en filtros no es suficiente. AdGuard Extra viene preinstalado con todas las versiones premium de AdGuard, por lo que no necesitas hacer nada para habilitarlo. Sin embargo, si deseas utilizarlo junto con la extensión de navegador AdGuard o cualquier otro bloqueador de anuncios, necesitarás utilizar una extensión adicional. Obtén más información sobre este script de usuario y cómo instalarlo en [GitHub](https://github.com/AdguardTeam/AdGuardExtra). ![AdGuard Extra](https://cdn.adtidy.org/content/kb/ad_blocker/general/adguard-extra.png) ### AdGuard Popup Blocker -The name speaks for itself: it blocks pop-ups — one of the most annoying types of ads on web pages. Learn more about this userscript, its key features, and how to install it on [GitHub](https://github.com/AdguardTeam/PopupBlocker). +El nombre habla por sí solo: bloquea las ventanas emergentes, uno de los tipos de anuncios más molestos en las páginas web. Obtén más información sobre este script de usuario, sus características clave y cómo instalarlo en [GitHub](https://github.com/AdguardTeam/PopupBlocker). ![AdGuard Popup Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png) -### AdGuard Assistant (legacy version) +### AdGuard Assistant (versión antigua) -This custom extension is designed to control filtering directly from the browser page (manual blocking, exclusion of the site, etc.). +Esta extensión personalizada está diseñada para controlar el filtrado directamente desde la página del navegador (bloqueo manual, exclusión del sitio, etc.). :::note -This version of Assistant is legacy and there is no point in using it on new systems, since it has been replaced with the full-fledged [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). But the legacy Assistant might be of help if there is no Browser Assistant for your browser. If this is your case, your can learn how to install AdGuard Assistant on [GitHub](https://github.com/AdguardTeam/AdguardAssistant). +Esta versión del Asistente es heredada y no tiene sentido usarla en sistemas nuevos, ya que ha sido reemplazada por el [Asistente de navegador](https://adguard.com/adguard-assistant/overview.html)completo. Pero el Asistente antiguo puede ser de ayuda si no hay un Asistente de navegador para tu navegador. Si este es tu caso, puedes aprender cómo instalar AdGuard Assistant en [GitHub](https://github.com/AdguardTeam/AdguardAssistant). ::: -### Disable AMP +### Deshabilitar AMP -A script that is only pre-installed in AdGuard for Android. It disables AMP (Accelerated Mobile Pages) on the Google search results page. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/DisableAMP). +Un script que sólo está preinstalado en AdGuard para Android. Desactiva AMP (Accelerated Mobile Pages) en la página de resultados de búsqueda de Google. Obtén más información sobre este script de usuario y cómo instalarlo en [GitHub](https://github.com/AdguardTeam/DisableAMP). -![Disable AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) +![Deshabilitar AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) -## Top picks outside AdGuard{#top-picks} +## Mejores opciones fuera de 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 as they've all earned their good reputation. +AdGuard no desarrolla estos scripts de usuario y, por lo tanto, no podemos ofrecer una garantía del 100% de que sean seguros y/o funcionen en todo momento. Sin embargo, según nuestra experiencia, merecen una recomendación ya que todos se han ganado su buena reputación. ### 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. +Este script elimina la función de seguimiento de Google de los enlaces en los resultados de búsqueda de Google. Acelera la carga de los resultados de búsqueda y te permite hacer clic derecho o tocar para copiar la URL del enlace. -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. +Tu código fuente es [disponible en GitHub](https://github.com/Rob--W/dont-track-me-google). Este script de usuario se puede descargar desde [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) e instalar en cualquier aplicación basada en AdGuard CoreLibs. ### microShield -A userscript for people who visit Korean websites and some international websites. The microShield userscript blocks Ad-Shield advertisement and anti-adblock. 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). +Un script de usuario para personas que visitan sitios web coreanos y algunos sitios web internacionales. El script de usuario de microShield bloquea la publicidad de Ad-Shield y el antibloqueo de publicidad. Tu código fuente original está disponible en [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) y [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). Este script de usuario se puede instalar en aplicaciones basadas en AdGuard CoreLibs, Violentmonkey, Tampermonkey y [quoid/userscripts](https://github.com/quoid/userscripts). Más información sobre microShield y cómo instalarlo en [GitHub](https://github.com/List-KR/microShield). -## Where can you get more userscripts?{#more-userscripts} +## ¿Dónde conseguir más scripts de usuario?{#more-userscripts} -As 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. +Como los scripts de usuario son creados principalmente por entusiastas, debes tener cuidado al instalarlos. Cualquier script de fuente desconocida conlleva un riesgo potencial. Sin embargo, existe una gran variedad de scripts interesantes que, si se instalan con cuidado y responsabilidad, pueden hacer que el uso de algunos sitios web sea más conveniente. -Here we will describe some of the most popular userscript catalogs. +Aquí describiremos algunos de los catálogos de scripts de usuario más populares. ### Stylish (userstyles.org) -[Userstyles.org](https://userstyles.org/) is a catalog of user styles, but it allows you to load them as userscripts. Thus, any user style can be installed via AdGuard. Be careful if you decide to install an unpopular script — there's a risk it might be harmful. +[Userstyles.org](https://userstyles.org/) es un catálogo de estilos de usuario, pero te permite cargarlos como scripts de usuario. Por lo tanto, se puede instalar cualquier estilo de usuario a través de AdGuard. Ten cuidado si decides instalar un script impopular: existe el riesgo de que sea dañino. ### Greasy Fork -[Greasy Fork](https://greasyfork.org/) is a userscript catalog by Stylish creators. Unlike the above-mentioned userstyles.org, the scripts in this catalog undergo moderation, so their credibility is much higher. +[Greasy Fork](https://greasyfork.org/) es un catálogo de scripts de usuario de los creadores de Stylish. A diferencia de userstyles.org mencionado anteriormente, los scripts de este catálogo se someten a moderación, por lo que su credibilidad es mucho mayor. ### OpenUserJS.org -[OpenUserJS.org](https://openuserjs.org/) is an open source userscript catalog written in nodeJS. It doesn't have moderation so stay alert to any suspicious scripts. +[OpenUserJS.org](https://openuserjs.org/) es un catálogo de scripts de usuario de código abierto escrito en nodeJS. No tiene moderación, así que mantente alerta ante cualquier script sospechoso. -### Community +### Comunidad -If you like the idea of personifying your browser with the help of userscripts, and you have any questions, you can ask them on one of these websites: +Si te gusta la idea de personalizar tu navegador con la ayuda de scripts de usuario, y tienes alguna duda, puedes preguntarlo en uno de estos sitios web: - [Stackoverflow](https://stackoverflow.com/questions/tagged/userscripts) - [FreeNode](https://webchat.freenode.net/#greasemonkey) - [Reddit](https://www.reddit.com/r/userscripts/) -## Development +## Desarrollo -### Request license +### Solicitar licencia -If you are developing your own custom script and want to test how it works with AdGuard, request a beta license key for the app. +Si estás desarrollando tu propio script personalizado y deseas probar cómo funciona con AdGuard, solicita una clave de licencia beta para la aplicación. -To get it, please send an email to devteam@adguard.com with the following information: +Para obtenerlo, envía un correo electrónico a devteam@adguard.com con la siguiente información: -**Subject:** Userscript author license request +**Asunto:** Solicitud de licencia de autor de script de usuario -**Body:** Please tell us about the userscripts you are working on. +**Cuerpo:** Cuéntanos sobre los scripts de usuario en los que estás trabajando. -Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). +Aquí hay un [enlace mailto](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). -### Compatibility +### Compatibilidad -#### Metadata block +#### Bloqueo de metadatos -##### Supported properties +##### Propiedades compatibles ```text @name @@ -132,23 +132,23 @@ Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%2 @icon64URL ``` -##### Unsupported properties +##### Propiedades no compatibles -These properties will be simply ignored by Adguard. +Adguard simplemente ignorará estas propiedades. ```text @unwrap ``` -#### Supported GM functions +#### Funciones GM compatibles -AdGuard supports both old GM\_ functions and new GM4 API that use GM object. +AdGuard admite tanto las funciones GM\_ antiguas como la nueva API GM4 que utiliza objetos GM. -##### Values +##### Valores :::note -All listed old Greasemonkey functions are deprecated but still supported. +Todas las funciones antiguas de Greasemonkey enumeradas están obsoletas pero aún son compatibles. ::: @@ -169,9 +169,9 @@ GM_addStyle GM_log ``` -[Here](https://wiki.greasespot.net/GM.info) you can find more information about Greasemonkey API. +[Aquí](https://wiki.greasespot.net/GM.info) puedes encontrar más información sobre la API de Greasemonkey. -### Example +### Ejemplo ```javascript // ==UserScript== diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/fa/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index 8e8edbe4469..69a173319c9 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Envoi des journaux -> AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. +:::note -Maintenant que vous avez collecté les journaux, veuillez suivre ces étapes pour les soumettre à notre équipe de développement : +AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. -1. Signalez le bug sur [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Envoyez votre archive avec les journaux et la durée de lecture à `devteam@adguard.com` et ajoutez un lien vers votre problème GitHub. Vous pouvez également télécharger l'archive sur Google Drive et y ajouter le lien au lieu de joindre le fichier. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md index aba7c4c8dcb..8bfdc088802 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/features/settings.md @@ -67,7 +67,7 @@ Userscripts are mini-programs written in JavaScript that extend the functionalit AdGuard Extra is a custom userscript that blocks complex ads and mechanisms that reinject ads to websites. -#### Disable AMP +#### Désactiver AMP Disable AMP is a userscript that disables [Accelerated mobile pages](https://en.wikipedia.org/wiki/Accelerated_Mobile_Pages) on the Google search results page. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index a317db4ec9a..120aa41c44c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Dans cet article, nous vous guiderons le long du processus de collecte des journaux de débogage, une étape de dépannage essentielle pour résoudre les problèmes complexes qui peuvent survenir. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. +:::note + +AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. + +::: ### Collecting debug log diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index c1aee7ba6da..f92f3a89be1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md index 8a7d586c0a7..bcc6238b85a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/advanced-settings.md @@ -1,5 +1,5 @@ --- -title: Advanced Settings guide +title: Guide sur les Paramètres avancés sidebar_position: 9 --- @@ -19,7 +19,7 @@ Changing *Advanced Settings* may cause problems with AdGuard's performance, brea To find *Advanced Settings*, open AdGuard, click the gear icon, select *Advanced*, then select *Advanced Settings*. -## Advanced Settings +## Paramètres avancés `network.extension.exclude.domains` @@ -109,19 +109,19 @@ Here you can list domains for which the fallback DNS server will be used instead `dns.proxy.adblockrules.blocking.mode` -Here you can specify the type of DNS server response to blocked requests, corresponding to ad-blocker-style rules. +Ici, vous pouvez spécifier le type de réponse du serveur DNS aux requêtes bloquées, correspondant aux règles de style adblock. -- 0 — respond with REFUSED -- 1 — respond with NXDOMAIN -- 2 — respond with 0.0.0.0 or the addresses specified in `dns.proxy.blocking.response.IPv4.address` and/or `dns.proxy.blocking.response.IPv6.address` +- 0 - répondre par REFUSED +- 1 — répondre avec NXDOMAIN +- 2 — répondre avec 0.0.0.0 ou les adresses spécifiées dans `dns.proxy.blocking.response.IPv4.address` et/ou `dns.proxy.blocking.response.IPv6 .adress` `dns.proxy.hostrules.blocking.mode` -Here you can specify the type of DNS server response to blocked requests, corresponding to hosts rules: +Ici, vous pouvez spécifier le type de réponse du serveur DNS aux requêtes bloquées, correspondant aux règles d'hôtes : -- 0 — respond with REFUSED -- 1 — respond with NXDOMAIN -- 2 — respond with 0.0.0.0 or the addresses specified in `dns.proxy.blocking.response.IPv4.address` and/or `dns.proxy.blocking.response.IPv6.address` +- 0 - répondre par REFUSED +- 1 — répondre avec NXDOMAIN +- 2 — répondre avec 0.0.0.0 ou les adresses spécifiées dans `dns.proxy.blocking.response.IPv4.address` et/ou `dns.proxy.blocking.response.IPv6 .adress` `dns.proxy.blocking.response.IPv4.address` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md index 8473bfb654a..94c6a6880e2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/big-sur-issues.md @@ -142,8 +142,8 @@ In Big Sur v11.1+, there are no known conflicts between AdGuard and Surge proxy. Now go to *Preferences → Network → Outbound proxy* and fill in the fields. For SOCKS5 proxy type: - `host`: localhost -- `port`: 6153 For HTTP proxy type: -- `host`: localhost +- `port` : 6153 Pour le type de proxy HTTP : +- `hôte`: localhost - `port`: 6152 ## Alternatives to using a Network Extension diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md index 3021b7e7a4b..32439ace4b3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/icloud-private-relay.md @@ -17,7 +17,7 @@ Currently, AdGuard and iCloud Private Relay cannot work at the same time. AdGuar The same applies to using any VPN apps on Mac: you have to choose between using iCloud Private Relay or a VPN service. -## In detail +## Plus de détails AdGuard for Mac now uses macOS built-in socket filtering based on the network extensions API. This new and rather buggy mechanism replaced good old Kernel extensions. Over the last 1.5 years, we've reported more than 20(!) bugs to Apple regarding their new filtering method. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protect-mail-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protect-mail-activity.md index dae74532b9f..c3ad8a7529a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protect-mail-activity.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protect-mail-activity.md @@ -19,7 +19,7 @@ However, it won't work if there's an active VPN connection. As it treats AdGuard Apple explains this issue [here](https://support.apple.com/HT212797). -## In detail +## Plus de détails AdGuard for Mac now uses macOS built-in socket filtering based on the network extensions API. This new and rather buggy mechanism replaced good old Kernel extensions. Over the last 1.5 years, we've reported more than 20(!) bugs to Apple regarding their new filtering method. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index ebec092e29a..2691c2a91fc 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ Pour analyser et diagnostiquer les divers problèmes pouvant survenir avec AdGua Vous pouvez maintenant envoyer ce fichier à support@adguard.com ou le joindre à votre rapport de bug sur GitHub. -> AdGuard s'engage à protéger votre vie privée. Nous suivons strictement notre [Politique de confidentialité](https://adguard.com/privacy/safari.html) et ne collectons aucune information privée sur les utilisateurs. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. +:::note + +AdGuard s'engage à protéger votre vie privée. Nous suivons strictement notre [Politique de confidentialité](https://adguard.com/privacy/safari.html) et ne collectons aucune information privée sur les utilisateurs. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. + +::: 1. Ouvrez le [dépôt GitHub AdGuard pour Safari](https://github.com/AdguardTeam/AdGuardForSafari/issues) et cliquez sur _Nouveau problème_. -2. Envoyez le fichier journal à devteam@adguard.com. Indiquez la date du bogue et joignez un lien vers votre problème ou son numéro (il apparaît sous la forme #number à côté du titre). +2. Envoyez le fichier journal à devteam@adguard.com. Indiquez la date du bogue et joignez un lien vers votre problème ou son numéro (il apparaît sous la forme #numéro à côté du titre). Vous pouvez également télécharger le fichier journal sur Google Drive et l'envoyer à devteam@adguard.com. Ajoutez le lien du fichier à votre problème GitHub. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 8a1adf6b9ed..318216614cb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 2c214b9fa9a..9f52d8ee43a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Cet article parle de AdGuard pour Windows, un bloqueur de contenus multifonction ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. +:::note + +AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index ee1654a5f7e..0ad77f2a065 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Cet article parle de AdGuard pour Windows, un bloqueur de contenus multifonction ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 2a61abbd0b0..c4e506ae0b5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Cet article parle de AdGuard pour Windows, un bloqueur de contenus multifonction ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index 197bd717361..80a4897fdc8 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Cet article parle de AdGuard pour Windows, un bloqueur de contenus multifonction ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard s'engage à protéger votre vie privée. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Avant d'envoyer vos journaux à l'équipe d'assistance, veuillez consulter le fichier car il peut contenir des informations supplémentaires que vous ne souhaitez pas partager. S'il contient de telles informations personnelles, nous vous recommandons de les supprimer au préalable. + +::: 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 902e04ad700..722d4e472d7 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard pour iOS][ios-app] | [AdGuard pour Safari][ext-saf] | [Bloqueur de contenu AdGuard][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:---------------------------:|:------------------------------:|:-------------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard pour iOS][ios-app] | [AdGuard pour Safari][ext-saf] | [Bloqueur de contenu AdGuard][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:---------------------------:|:------------------------------:|:-------------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: 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 25e1e073229..9b78b43899d 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 @@ -3,74 +3,74 @@ title: Protection contre les maliciels et l'hameçonnage sidebar_position: 3 --- -Falling prey to phishing and malware remains a common issue. To enhance digital security, we’ve incorporated special filters in AdGuard products to shield you from malicious and phishing websites. To date, we’ve categorized over 15 million sites and built a database of 1.5 million websites known for phishing and malware. Using this database, AdGuard checks the websites you visit to protect you from online threats. +Les victimes d'hameçonnage et de logiciels malveillants restent un problème courant. Pour améliorer la sécurité numérique, nous avons incorporé des filtres spéciaux dans les produits AdGuard pour vous protéger contre les sites web malveillants et ceux de phishing. À ce jour, nous avons catégorisé plus de 15 millions de sites et construit une base de données de 1,5 million de sites web connus pour hameçonnage et maliciels. À l'aide de cette base de données, AdGuard vérifie les sites web que vous visitez pour vous protéger contre les menaces en ligne. ::: note -We strictly do not collect or use any information about the websites you visit. +Nous ne collectons ni n'utilisons aucune information sur les sites web que vous visitez. ::: -## How does AdGuard check websites?​ +## Comment AdGuard vérifie-t-il les sites web ?​ -Each time you visit a website, your local client exchanges information with our backend server in the form of hashes and hash prefixes. Based on this exchange, the local client determines whether or not the website is listed in the potentially dangerous websites database. There is a difference in the scope of this check for apps and extensions. +Chaque fois que vous visitez un site web, votre client local échange des informations avec notre serveur backend sous forme de hachages et de préfixes de hachage. Sur la base de cet échange, le client local détermine si le site web figure ou non dans la base de données des sites web potentiellement dangereux. Il existe une différence dans la portée de cette vérification pour les applications et les extensions. -### In apps +### Dans les applications -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 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) -### In browser extensions +### Dans les extensions de navigateur -Our browser extensions can only check domain names, not full URLs. 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. +Nos extensions de navigateur ne peuvent vérifier que les noms de domaine, pas les URL complètes. Ils ne sont pas non plus en mesure de vérifier les sous-requêtes. Cela signifie que s'il y a des éléments potentiellement malveillants sur la page, ils seront chargés même si la page elle-même provient d'un domaine sûr. L’extension ne pourra pas s’en protéger. Il est également important de noter que la vérification effectuée est asynchrone, c'est-à-dire qu'elle se produit en même temps que le chargement de la page, il est donc possible que des logiciels malveillants soient également chargés. -## Setting up phishing and malware protection in AdGuard products +## Paramétrage de la protection contre l'hameçonnage et les maliciels dans les produits AdGuard -- **For Windows**: Activate the *Browsing Security* module in the *Settings* menu +- **Pour Windows**: Activez le module *Sécurité de navigation* dans le menu *Paramètres* -![Browsing Security in Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png) +![Navigation sécurisée dans Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png) -- **For Mac**: Enable the *Security* module in *Preferences* +- **Pour Mac**: Activez le module *Sécurité* dans *Préférences* -![Security in Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png) +![Sécurité sur Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png) -- **For Android**: Turn on *Browsing Security* in the *Protection* tab +- **Pour Android**: Activez *Navigation sécurisée* dans l'onglet *Protection* -![Browsing security in Android *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_android.png) +![Navigation sécurisée sous 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. Additionally, enable *DNS protection* and select one of the AdGuard DNS servers +- **Pour iOS**: Bien qu'il n'y ait pas de module séparé, vous pouvez aller dans *Protection Safari* → *Filtres* → *Sécurité* et activer les filtres disponibles. En outre, activez la *Protection DNS* et sélectionnez l'un des serveurs DNS AdGuard -![Security in iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg) +![Sécurité sous iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg) -- **For Browser extensions**: Enable *Phishing and malware protection* in the *Settings* tab. For enhanced protection, go to *Filters* → *Security* and activate available filters +- **Pour les extensions de navigateur** : Activez la *protection contre l'hameçonnage et les maliciels* dans l'onglet *Paramètres*. Pour une protection renforcée, accédez à *Filtres* → *Sécurité* et activez les filtres disponibles ![Protection contre les maliciels et l'hameçonnage](https://cdn.adtidy.org/content/kb/ad_blocker/general/extension_protection.png) -- **For Private AdGuard DNS:** Enable malware protection in *Server settings* under *Security* +- **Pour le DNS AdGuard privé :** Activez la protection contre les logiciels malveillants dans *Paramètres du serveur* sous *Sécurité* -![Security in DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) +![Sécurité dans DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) -## What we block +## Ce que nous bloquons -We maintain two primary filters: one that protects against phishing and fraudulent websites that attempt to steal user credentials, and another that blocks access to websites known to distribute malware, which could lead to data loss, information leaks, or damage to your device. These filters also protect you from websites with various scams and fraudulent schemes. For more detailed information, refer to this [Wikipedia article](https://en.wikipedia.org/wiki/Phishing). +Nous maintenons deux filtres principaux : un qui protège contre l'hameçonnage et les sites web frauduleux qui tentent de voler les informations d'identification des utilisateurs, et un autre qui bloque l'accès aux sites web connus pour distribuer des maliciels, ce qui pourrait entraîner une perte de données, des fuites d'informations ou des dommages à votre appareil. Ces filtres vous protègent également des sites web des escrocs proposant des stratagèmes frauduleux. Pour des informations plus détaillées, voir l'[article de Wikipédia](https://en.wikipedia.org/wiki/Phishing). -## Maintaining our filters +## Entretien de nos filtres -AdGuard maintains an extensive database of phishing and malware websites, and it’s updated regularly and automatically as new threats are discovered. We collect information from a variety of reliable, high-quality sources, both public and from other companies, and aggregate it into a common database of dangerous sites. +AdGuard gère une vaste base de données de sites web d'hameçonnage et de logiciels malveillants, et elle est mise à jour régulièrement et automatiquement à mesure que de nouvelles menaces sont découvertes. Nous recueillons des informations à partir des sources fiables et de qualité, à la fois publiques et provenant d'autres entreprises, et les regroupons dans une base de données commune sur les sites dangereux. -We automatically analyze complaints about suspicious sites and spend a great deal of time keeping the database up-to-date, cleaning up false positives, and implementing mechanisms to prevent them in the future. +Nous analysons automatiquement les plaintes concernant les sites web suspects et passons beaucoup de temps à maintenir la base de données à jour, à nettoyer les faux positifs et à mettre en place des mécanismes pour les éviter à l'avenir. -### Want to help?​ +### Vous souhaitez nous aider ? -Any help is welcome! If you encounter a phishing or malware website, please report it to . +Nous apprécions toute votre aide ! Si vous rencontrez un site d'hameçonnage ou de maliciels, veuillez le signaler à . -### False-positive responses​ +### Réponses faussement positives -Occasionally, some non-malicious websites are added to AdGuard’s filters. We do our best to reduce the percentage of false positives, but they still occur. If you encounter this behavior from AdGuard, please report the false positive to our technical support at . +Il arrive que des sites web non malveillants soient ajoutés aux filtres d'AdGuard. Nous faisons de notre mieux pour réduire le pourcentage de faux positifs, mais il y en a toujours. Si vous rencontrez ce comportement de la part d'AdGuard, veuillez signaler le faux positif à notre assistance technique à . -## If you are suspicious about a website +## Si vous avez des doutes sur un site web -If you suspect that a certain website might be dangerous, check it first by using our [security check tool](https://reports.adguard.com/welcome.html). +Si vous pensez qu'un site web donné peut être dangereux, vérifiez-le d'abord à l'aide de notre [outil de vérification de la sécurité](https://reports.adguard.com/welcome.html). -![Security check](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) +![Contrôle de sécurité](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) 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 447ad02c80c..6f4aa7c11b9 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 @@ -3,61 +3,61 @@ title: Mode furtif 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. +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. -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. +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. -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**. +Nous allons énumérer et décrire ci-dessous les principales caractéristiques et options que vous pouvez contrôler dans les paramètres du **mode furtif**. Elles sont réparties en quatre groupes : **Général**, **Méthodes de suivi**, **API du navigateur** et **Divers**. :::note -Some options may not be available depending on the particular product due to OS or other limitations. +Certaines options peuvent ne pas être disponibles en fonction du produit particulier en raison du système d'exploitation ou d'autres limitations. ::: ## Général {#general} -### Hide your search queries {#searchqueries} +### Masquez vos requêtes de recherche {#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. +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. -### Ask websites not to track you {#donottrack} +### Demandez aux sites web de ne pas vous suivre {#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. +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. -### Strip tracking parameters from URLs +### Retirez les paramètres de suivi des URL -If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs. +Si vous activez cette option, AdGuard supprimera les paramètres de suivi tels que `utm_*` et `fb_ref` des URL des pages. -### Tracking methods {#tracking-methods} +### Méthodes de suivi {#tracking-methods} -### Self-destruction of third-party cookies {#3p-cookie} +### Autodétruire les cookies tiers {#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. +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. -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. +Les cookies tiers sont ceux mis en œuvre par un site Internet différent de celui sur lequel vous naviguez actuellement. Par exemple, cnn.com peut avoir un widget Facebook "J'aime" sur sa page d'accueil. Ce widget implémentera un cookie qui pourra être lu ultérieurement par Facebook. Certains annonceurs utilisent de tels cookies pour suivre les autres sites que vous visitez et sur lesquels leurs annonces sont placées. -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. +Définissez une période de temps (en minutes) au terme de laquelle tous les cookies tiers seront détruits. Réglez la minuterie sur 0 pour les bloquer complètement. -:::caution +:::attention -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). +Ce paramètre supprime tous les cookies de tiers, y compris les informations relatives à vos connexions via les réseaux sociaux ou d'autres services de tiers. Il se peut que vous deviez périodiquement vous reconnecter à certains sites web et que vous deviez faire face à d'autres problèmes liés aux cookies. Pour bloquer uniquement les cookies de suivi, utilisez [*Filtre de protection contre le suivi AdGuard*](/general/ad-filtering/filter-policy/#tracking-protection-filter). ::: -### Self-destruction of first-party cookies {#1p-cookie} +### Autodestruction des cookies propriétaires {#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. +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. -:::caution +:::attention -We do not recommend enabling this option as it may severely interfere with the work of certain websites. +Nous vous déconseillons d'activer cette option car elle pourrait gravement interférer avec le fonctionnement de certains sites web. ::: -### Disable cache for third-party requests {#3p-cache} +### Désactivez le cache pour les requêtes des tiers {#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. +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. ### Block third-party Authorization header {#3p-auth} diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/general/userscripts.md b/i18n/fr/docusaurus-plugin-content-docs/current/general/userscripts.md index 851f55ff0fc..a0396721854 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/general/userscripts.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/general/userscripts.md @@ -4,105 +4,105 @@ sidebar_position: 5 toc_max_heading_level: 4 --- -Userscripts (we also call them "extensions") are, de-facto, mini-programs written in JavaScript. They modify or extend the functionality of one or more websites. Many AdGuard users may be already familiar with such userscripts as AdGuard Assistant, Popup Blocker, and AdGuard Extra. +Les scripts utilisateurs ou userscripts (que nous appelons aussi "extensions") sont, en fait, des miniprogrammes écrits en JavaScript. Ils modifient ou élargissent les fonctionnalités d'un ou plusieurs sites web. De nombreux utilisateurs d'AdGuard sont peut-être déjà familiers avec des scripts utilisateur tels que AdGuard Assistant, Popup Blocker et AdGuard Extra. -:::note Supported apps +:::note Applications prises en charge -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 peut accroître considérablement les fonctionnalités des sites web en agissant comme un gestionnaire de scripts utilisateur. Vous pouvez ajouter vos scripts personnalisés ou gérer ceux existants dans nos trois produits : [AdGuard pour Windows](/adguard-for-windows/features/extensions), [AdGuard pour Android](/adguard-for-android/features/settings#userscripts)et [AdGuard pour Mac](/adguard-for-mac/features/extensions). ::: -## Recommended AdGuard scripts +## Scripts AdGuard recommandés -These userscripts come directly from the AdGuard developers, and we can guarantee that they are effective and safe. 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 expose yourself to a certain risk, as some scripts may be harmful to your computer. +Ces scripts utilisateur proviennent directement des développeurs AdGuard et nous pouvons garantir qu'ils sont efficaces et sûrs. Pour certains des scripts utilisateur développés par d'autres que nous considérons comme bons et fiables, [faites défiler jusqu'à la section suivante](#top-picks). Vous pouvez également trouver ci-dessous certains des [sites web populaires avec des scripts](#more-userscripts) , mais n'oubliez pas que chaque fois que vous téléchargez un script utilisateur à partir d'une source inconnue, vous vous exposez à un certain risque, car certains scripts peuvent être dangereux pour votre ordinateur. ### AdGuard Extra -An extension that blocks ads in difficult cases when the usual filter-based approach is not enough. AdGuard Extra comes pre-installed with all premium AdGuard versions, so you don't need to do anything to enable it. However, if you want to use it alongside AdGuard Browser Extension or any other ad blocker, you'll need to use an additional extension. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/AdGuardExtra). +Une extension qui bloque les publicités dans les cas difficiles où l'approche habituelle basée sur les filtres ne suffit pas. AdGuard Extra est préinstallée avec toutes les versions premium d'AdGuard, vous n'avez donc rien à faire pour l'activer. Cependant, si vous souhaitez l'utiliser avec l'extension de navigateur AdGuard ou tout autre bloqueur de publicités, vous devrez utiliser une extension supplémentaire. Apprenez-en plus sur ce script utilisateur et comment l'installer sur [GitHub](https://github.com/AdguardTeam/AdGuardExtra). ![AdGuard Extra](https://cdn.adtidy.org/content/kb/ad_blocker/general/adguard-extra.png) -### AdGuard Popup Blocker +### Bloqueur AdGuard de fenêtres pop-up -The name speaks for itself: it blocks pop-ups — one of the most annoying types of ads on web pages. Learn more about this userscript, its key features, and how to install it on [GitHub](https://github.com/AdguardTeam/PopupBlocker). +Le nom parle de lui-même : il bloque les pop-ups, l'un des types de publicités les plus agaçants sur les pages web. Pour apprendre plus sur ce script utilisateur, ses principales fonctionnalités et la manière de l'installer, consultez [GitHub](https://github.com/AdguardTeam/PopupBlocker). -![AdGuard Popup Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png) +![Bloqueur AdGuard de fenêtres pop-up](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png) -### AdGuard Assistant (legacy version) +### Assistant AdGuard (ancienne version) -This custom extension is designed to control filtering directly from the browser page (manual blocking, exclusion of the site, etc.). +Cette extension personnalisée est conçue pour contrôler le filtrage directement depuis la page du navigateur (blocage manuel, exclusion du site, etc.). :::note -This version of Assistant is legacy and there is no point in using it on new systems, since it has been replaced with the full-fledged [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). But the legacy Assistant might be of help if there is no Browser Assistant for your browser. If this is your case, your can learn how to install AdGuard Assistant on [GitHub](https://github.com/AdguardTeam/AdguardAssistant). +Cette version de l'assistant est obsolète et inutile à utiliser sur les nouveaux systèmes, puisqu'elle a été remplacée par l'[Assistant de navigateur](https://adguard.com/adguard-assistant/overview.html) complet séparé. Mais l'ancien Assistant peut être utile s'il n'y a pas d'Assistant de navigateur pour votre navigateur. Si c’est votre cas, vous pouvez apprendre comment installer l'Assistant AdGuard sur [GitHub](https://github.com/AdguardTeam/AdguardAssistant). ::: -### Disable AMP +### Désactiver AMP -A script that is only pre-installed in AdGuard for Android. It disables AMP (Accelerated Mobile Pages) on the Google search results page. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/DisableAMP). +Un script préinstallé uniquement dans AdGuard pour Android. Il désactive AMP (Accelerated Mobile Pages - pages mobiles accélérées) sur la page de résultats de recherche Google. Apprenez plus sur ce script utilisateur et comment l'installer sur [GitHub](https://github.com/AdguardTeam/DisableAMP). -![Disable AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) +![Désactiver AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) -## Top picks outside AdGuard{#top-picks} +## Meilleurs choix en dehors d'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 as they've all earned their good reputation. +Ces scripts utilisateur ne sont pas développés par AdGuard et nous ne pouvons donc pas garantir à 100 % qu'ils sont sûrs et/ou fonctionnent à tout moment. Cependant, d'après notre expérience, ils méritent une recommandation car ils ont tous gagné leur bonne réputation. ### 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. +Ce script supprime la fonctionnalité de suivi de Google des liens dans les résultats de recherche Google. Il accélère le chargement des résultats de recherche et vous permet de cliquer ou d'appuyer avec le bouton droit pour copier l'URL du lien. -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. +Son code source est [disponible sur GitHub](https://github.com/Rob--W/dont-track-me-google). Ce script utilisateur peut être téléchargé depuis [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) et installé dans n'importe quelle application basée sur AdGuard CoreLibs. ### microShield -A userscript for people who visit Korean websites and some international websites. The microShield userscript blocks Ad-Shield advertisement and anti-adblock. 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). +Un script utilisateur pour les personnes qui visitent des sites web coréens et certains sites web internationaux. Le script utilisateur microShield bloque la publicité Ad-Shield et l'anti-adblock. Son code source d'origine est disponible sur [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) et [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). Ce script utilisateur peut être installé dans les applications basées sur AdGuard CoreLibs, Violentmonkey, Tampermonkey et [quoid/userscripts](https://github.com/quoid/userscripts). Apprenez-en davantage sur microShield et comment l'installer sur [GitHub](https://github.com/List-KR/microShield). -## Where can you get more userscripts?{#more-userscripts} +## Où trouver d'autres scripts utilisateur ?{#more-userscripts} -As 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. +Les userscripts étant principalement créés par des passionnés, il faut être bien prudent lors de leur installation. Tout script provenant d'une source inconnue comporte un risque potentiel. Pourtant, il existe une grande variété de scripts intéressants qui, s’ils sont installés avec soin et de manière responsable, peuvent réellement rendre l’utilisation de certains sites web plus pratique. -Here we will describe some of the most popular userscript catalogs. +Nous décrirons ici certains des catalogues de scripts utilisateur les plus populaires. ### Stylish (userstyles.org) -[Userstyles.org](https://userstyles.org/) is a catalog of user styles, but it allows you to load them as userscripts. Thus, any user style can be installed via AdGuard. Be careful if you decide to install an unpopular script — there's a risk it might be harmful. +[Userstyles.org](https://userstyles.org/) est un catalogue de styles utilisateur, mais il vous permet de les charger en tant que scripts utilisateur. Donc, n'importe quel style d'utilisateur peut être installé via AdGuard. Soyez prudent si vous décidez d'installer un script impopulaire : il existe un risque qu'il soit dangereux. ### Greasy Fork -[Greasy Fork](https://greasyfork.org/) is a userscript catalog by Stylish creators. Unlike the above-mentioned userstyles.org, the scripts in this catalog undergo moderation, so their credibility is much higher. +[Greasy Fork](https://greasyfork.org/) est un catalogue de scripts utilisateur réalisé par les créateurs de Stylish. Contrairement à userstyles.org mentionné ci-dessus, les scripts de ce catalogue sont soumis à une modération, leur crédibilité est donc beaucoup plus élevée. ### OpenUserJS.org -[OpenUserJS.org](https://openuserjs.org/) is an open source userscript catalog written in nodeJS. It doesn't have moderation so stay alert to any suspicious scripts. +[OpenUserJS.org](https://openuserjs.org/) est un catalogue de scripts utilisateur open source écrit en nodeJS. Il n'y a pas de modération, alors restez attentif à tout script suspect. -### Community +### Communauté -If you like the idea of personifying your browser with the help of userscripts, and you have any questions, you can ask them on one of these websites: +Si vous aimez l’idée de personnifier votre navigateur à l’aide de scripts utilisateur et vous avez des questions, vous pouvez les poser sur l’un de ces sites : - [Stackoverflow](https://stackoverflow.com/questions/tagged/userscripts) - [FreeNode](https://webchat.freenode.net/#greasemonkey) - [Reddit](https://www.reddit.com/r/userscripts/) -## Development +## Développement -### Request license +### Demande de licence -If you are developing your own custom script and want to test how it works with AdGuard, request a beta license key for the app. +Si vous développez votre propre script personnalisé et souhaitez tester son fonctionnement avec AdGuard, demandez une clef de licence bêta pour l'application. -To get it, please send an email to devteam@adguard.com with the following information: +Pour l'obtenir, veuillez envoyer un email à devteam@adguard.com avec les informations suivantes : -**Subject:** Userscript author license request +**Objet :** Userscript author license request -**Body:** Please tell us about the userscripts you are working on. +**Message :** Veuillez nous parler des scripts utilisateur sur lesquels vous travaillez. -Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). +Voici un [lien d'envoi d'email](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). -### Compatibility +### Compatibilité -#### Metadata block +#### Bloc de métadonnées -##### Supported properties +##### Propriétés prises en charge ```text @name @@ -132,23 +132,23 @@ Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%2 @icon64URL ``` -##### Unsupported properties +##### Propriétés non prises en charge -These properties will be simply ignored by Adguard. +Ces propriétés seront simplement ignorées par AdGuard. ```text @unwrap ``` -#### Supported GM functions +#### Fonctions GM prises en charge -AdGuard supports both old GM\_ functions and new GM4 API that use GM object. +AdGuard prend en charge à la fois les anciennes fonctions GM\_ et la nouvelle API GM4 qui utilisent l'objet GM. -##### Values +##### Valeurs :::note -All listed old Greasemonkey functions are deprecated but still supported. +Toutes les anciennes fonctions Greasemonkey répertoriées sont obsolètes mais toujours prises en charge. ::: @@ -169,9 +169,9 @@ GM_addStyle GM_log ``` -[Here](https://wiki.greasespot.net/GM.info) you can find more information about Greasemonkey API. +Vous trouverez [ici](https://wiki.greasespot.net/GM.info) plus d'informations sur l'API Greasemonkey. -### Example +### Exemple ```javascript // ==UserScript== diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/hu/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 74456e648ee..a67edabbb00 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index 3896f6ef3b7..479eb4bac5f 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Inviare i registri -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note -Ora che hai raccolto i registri, ti preghiamo di seguire questi passaggi per inviarli al nostro team di sviluppo: +AdGuard si impegna a proteggere la tua privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Prima di inviare i registri al team di supporto, esamina il file poiché potrebbe contenere informazioni aggiuntive che non desideri condividere. Se contiene tali informazioni personali, ti consigliamo di eliminarle prima. -1. Segnala il bug su [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Invia il tuo archivio con i registri e l'orario di riproduzione a 'devteam@adguard.com' e aggiungi un collegamento al tuo ticket di GitHub. Puoi anche caricare l'archivio su Google Drive e aggiungere il collegamento a esso, invece di allegare il file. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md index 0ffc5a34d37..0ab29d07ba6 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/battery.md @@ -5,7 +5,7 @@ sidebar_position: 1 :::info -This article is about AdGuard for Android, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Questo articolo riguarda AdGuard per Android, un blocco annunci multifunzionale che protegge il tuo dispositivo a livello di sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 5b5d067123d..69ed6047a3e 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In questo articolo, ti guideremo attraverso il processo di raccolta dei registri di debug, un passaggio essenziale per la risoluzione dei problemi complessi che potrebbero potenzialmente sorgere. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard si impegna a proteggere la tua privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Prima di inviare i registri al team di supporto, esamina il file poiché potrebbe contenere informazioni aggiuntive che non desideri condividere. Se contiene tali informazioni personali, ti consigliamo di eliminarle prima. + +::: ### Collecting debug log diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 90cf928d752..d1942247839 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -5,12 +5,24 @@ sidebar_position: 4 :::info -This article is about AdGuard for Android, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Questo articolo riguarda AdGuard per Android, un blocco annunci multifunzionale che protegge il tuo dispositivo a livello di sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) + +::: + +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). ::: Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard si impegna a proteggere la tua privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Prima di inviare i registri al team di supporto, esamina il file poiché potrebbe contenere informazioni aggiuntive che non desideri condividere. Se contiene tali informazioni personali, ti consigliamo di eliminarle prima. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md index 7abb15331df..7abf9adcb71 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/low-level-settings.md @@ -5,7 +5,7 @@ sidebar_position: 6 :::info -This article is about AdGuard for Android, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Questo articolo riguarda AdGuard per Android, un blocco annunci multifunzionale che protegge il tuo dispositivo a livello di sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/tasker.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/tasker.md index 1af95ed681d..48d720abe16 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/tasker.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/tasker.md @@ -144,6 +144,6 @@ Before v4.0 the class was called `com.adguard.android.receivers.AutomationReceiv To perform a task without showing a toast, add an additional EXTRA `quiet: true` -### Example +### Esempio ![Automation *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/android/solving_problems/tasker/automation2.png) diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/youtube-ads.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/youtube-ads.md index c06efb762c8..ff02e60feb5 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/youtube-ads.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/youtube-ads.md @@ -5,7 +5,7 @@ sidebar_position: 7 :::info -This article is about AdGuard for Android, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Questo articolo riguarda AdGuard per Android, un blocco annunci multifunzionale che protegge il tuo dispositivo a livello di sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/installation.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/installation.md index ba7909f68b1..0ad502f1b78 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/installation.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/installation.md @@ -5,7 +5,7 @@ sidebar_position: 2 :::info -This article is about AdGuard for Mac, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Questo articolo riguarda AdGuard per Mac, un blocco annunci multifunzionale che protegge il tuo dispositivo a livello di sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protection-cannot-be-enabled.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protection-cannot-be-enabled.md index f3814f11e68..8a8a8fddfaa 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protection-cannot-be-enabled.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/protection-cannot-be-enabled.md @@ -5,7 +5,7 @@ sidebar_position: 2 :::info -This article is about AdGuard for Mac, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Questo articolo riguarda AdGuard per Mac, un blocco annunci multifunzionale che protegge il tuo dispositivo a livello di sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md index 30a7b2fe8b2..6b2805996f2 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md @@ -3,12 +3,12 @@ title: Info sidebar_position: 5 --- -![About tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/About.png) +![Scheda Informazioni](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/About.png) Nella scheda Informazioni, puoi visualizzare le informazioni sulla versione corrente del tuo prodotto e i collegamenti ai documenti legali. È inoltre presente un collegamento alla nostra repository su GitHub. Lì, puoi monitorare lo sviluppo del prodotto, creare richieste di funzionalità e segnalazioni di bug. -:::note Reminder +:::note Promemoria -AdGuard for Safari can be downloaded for free [from the App Store](https://apps.apple.com/app/adguard-for-safari/id1440147259). A detailed setup instruction is available in the [Knowledge base](/adguard-for-safari/installation/). +AdGuard per Safari può essere scaricato gratuitamente [dall'App Store](https://apps.apple.com/app/adguard-for-safari/id1440147259). Le istruzioni di configurazione dettagliate sono disponibili nella [Knowledge Base](/adguard-for-safari/installation/). ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md index 35727b96b45..2e981bcf06f 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md @@ -3,6 +3,6 @@ title: AdGuard Personalizzati sidebar_position: 7 --- -![Custom tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/AGCustom.png) +![Scheda Personalizzati](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/AGCustom.png) -If you need more filters, you can add them to _AdGuard Custom_. Per aggiungere un filtro personalizzato, inserisci un URL o un percorso locale di file nel campo rilevante. You can find new filters at [filterlists.com](https://filterlists.com/). +Se necessiti di più filtri, puoi aggiungerli ad _AdGuard Personalizzati_. Per aggiungere un filtro personalizzato, inserisci un URL o un percorso locale di file nel campo rilevante. Puoi trovare i filtri nuovi su [filterlists.com](https://filterlists.com/). diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md index 3b6f0eff4c1..23213233ea3 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md @@ -3,4 +3,4 @@ title: AdGuard Generale sidebar_position: 2 --- -_AdGuard General_ is a content blocker that combines the most essential filters for blocking ads. Consigliamo di mantenere sempre abilitato il Filtro di Base di AdGuard. +_AdGuard Generale_ è un bloccatore di contenuti che combina i filtri più essenziali per bloccare le inserzioni. Consigliamo di mantenere sempre abilitato il Filtro di Base di AdGuard. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md index 554d6757ae6..02e2669db88 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md @@ -3,10 +3,10 @@ title: AdGuard Altri sidebar_position: 6 --- -_AdGuard Other_ contains filters with various functions. Ad esempio, contiene un filtro che sblocca gli annunci di ricerca e gli annunci di auto-promozione. In alcuni casi, aiuta a trovare esattamente ciò che stai cercando, poiché questo tipo di annunci sono più rilevanti e meno intrusivi di altri. +_AdGuard Altri_ contiene filtri con varie funzionalità. Ad esempio, contiene un filtro che sblocca gli annunci di ricerca e gli annunci di auto-promozione. In alcuni casi, aiuta a trovare esattamente ciò che stai cercando, poiché questo tipo di annunci sono più rilevanti e meno intrusivi di altri. -:::note Disclaimer +:::note Avvertenza -We don’t have any ‘acceptable ads’ paid by advertisers. Instead, we provide users with an option to see [search ads and websites' self-promotion](/general/ad-filtering/search-ads). +Non abbiamo alcuna 'inserzione accettabile' pagata dagli inserzionisti. Invece, forniamo agli utenti un'opzione per visualizzare le [auto-promozioni di ricerca e dei siti web](/general/ad-filtering/search-ads). ::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md index 7bd8768e3a8..3e35fe7efe6 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md @@ -3,4 +3,4 @@ title: AdGuard Privacy sidebar_position: 3 --- -Questo blocco dei contenuti è lo strumento principale contro contatori e altri strumenti analitici web. The _AdGuard Tracking Protection filter_ is enabled by default. +Questo blocco dei contenuti è lo strumento principale contro contatori e altri strumenti analitici web. Il _filtro di Protezione dal Tracciamento di AdGuard_ è abilitato per impostazione predefinita. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md index 43a05606d1c..71be84295da 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md @@ -3,4 +3,4 @@ title: AdGuard Sicurezza sidebar_position: 5 --- -Questo blocco dei contenuti unisce diversi filtri correlati alla sicurezza. _Malware Domains Blocklist_ blocks domains that are notorious for spreading malware and spyware. _Spam404_ protects you from Internet fraudsters. _NoCoin Filter List_ disrupts browser-based cryptominers, such as Coinhive. +Questo blocco dei contenuti unisce diversi filtri correlati alla sicurezza. La _Malware Domains Blocklist_ blocca i domini noti per la diffusione di malware e spyware. _Spam404_ ti protegge dai truffatori di Internet. L'elenco di filtraggio _NoCoin Filter List_ disturba i cryptominer basati su browser, come Coinhive. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md index 88fc8754340..55c8b26124d 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md @@ -3,4 +3,4 @@ title: AdGuard Social sidebar_position: 4 --- -_AdGuard Social_ contains filters against social media buttons, widgets, scripts, and icons. In questa sezione si possono trovare altri filtri dei fastidi: filtri contro popup, banner di app mobili, avvisi sui cookie e altri. To enable them, find _Social Widgets_ in the Filters tab. +_AdGuard Social_ contiene i filtri per pulsanti, widget, script e icone dei social. In questa sezione si possono trovare altri filtri dei fastidi: filtri contro popup, banner di app mobili, avvisi sui cookie e altri. Per abilitarli, trova _Widget Social_ nella scheda dei Filtri. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md index dc9b81c652e..8a3e0038211 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md @@ -1,17 +1,17 @@ --- -title: What is a content blocker? +title: Cos'è un blocco di contenuti? sidebar_position: 1 --- -![Content blockers tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Contentblockers.png) +![Scheda dei blocchi di contenuti](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Contentblockers.png) -Un blocco dei contenuti è un gruppo tematico di filtri. Privacy-related filters are included in the content blocker with the corresponding name — _AdGuard Privacy_. +Un blocco dei contenuti è un gruppo tematico di filtri. I filtri correlati alla privacy sono inclusi nel bloccatore di contenuti con il nome corrispondente, _AdGuard Privacy_. Il Blocco dei contenuti è stato progettato per due motivi: strutturare i filtri e conformarsi alle limitazioni di Apple. -[In 2019](https://adguard.com/en/blog/adguard-safari-1-5.html), Apple put limitations on ad blockers for Safari, allowing them to use only 50,000 filtering rules simultaneously. Poiché questo numero non era sufficiente affinché un ad blocker fornisse una buona qualità di filtraggio (Filtro di Base AdGuard da solo ha 30.000 regole di filtraggio), abbiamo suddiviso AdGuard per Safari in 6 blocchi dei contenuti ciascuno contenente fino a 50.000 regole. +[Nel 2019](https://adguard.com/blog/adguard-safari-1-5.html), Apple ha inserito delle limitazioni sui bloccatori di inserzioni per Safari, consentendogli di utilizzare esclusivamente 50.000 regole di filtraggio simultaneamente. Poiché questo numero non era sufficiente affinché un ad blocker fornisse una buona qualità di filtraggio (Filtro di Base AdGuard da solo ha 30.000 regole di filtraggio), abbiamo suddiviso AdGuard per Safari in 6 blocchi dei contenuti ciascuno contenente fino a 50.000 regole. -[In 2022](https://adguard.com/en/blog/adguard-for-safari-1-11.html), Apple increased the filtering rule limit for each content blocker to 150,000 rules applied simultaneously. Per quanto riguarda AdGuard per Safari, è possibile abilitare fino a 900.000 regole per tutti e sei i blocchi dei contenuti. +[Nel 2022](https://adguard.com/blog/adguard-for-safari-1-11.html), Apple ha incrementato il limite delle regole di filtraggio per ogni bloccatore di contenuti a 150.000 regole applicate contemporaneamente. Per quanto riguarda AdGuard per Safari, è possibile abilitare fino a 900.000 regole per tutti e sei i blocchi dei contenuti. Mentre il limite è stato aumentato, la struttura dei blocchi dei contenuti è rimasta la stessa. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md index 77a181fa974..368fe3949e1 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md @@ -3,12 +3,12 @@ title: Filtri sidebar_position: 2 --- -![Filters tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Filters.png) +![Scheda Filtri](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Filters.png) Un filtro è un elenco di regole scritte in una sintassi speciale. Seguendo tali regole, il blocco dei contenuti può filtrare il traffico web: bloccare gli annunci o le richieste ai siti web dannosi. -Filters are combined into eight thematic categories: _Ad Blocking, Privacy, Social widgets, Annoyances, Security, Language-specific filters, Custom, and Other filters_. +I filtri sono combinati in otto categorie tematiche: _Blocco annunci, Privacy, Widget Social, Disturbi, Sicurezza, Filtri specifici per lingua, Personalizzati e Altri filtri_. -Read more about [AdGuard filters](/general/ad-filtering/adguard-filters) or [ad filtering in general](/general/ad-filtering/how-ad-blocking-works). +Leggi di più sui [filtri di AdGuard](/general/ad-filtering/adguard-filters) o sul [filtraggio degli annunci in generale](/general/ad-filtering/how-ad-blocking-works). Nella scheda Filtri, puoi abilitare l'intera categoria o filtri separati. Le modifiche nella scheda Filtri si riflettono nella sezione Blocco dei contenuti (che si trova nella scheda Generale). diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md index b070e67b93b..5681c4c52fd 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md @@ -9,10 +9,10 @@ Questo articolo riguarda AdGuard per Safari, che protegge solo il tuo browser Sa ::: -AdGuard per Safari è stato progettato per conformarsi alle restrizioni di Apple per le estensioni del browser di blocco degli annunci ed è il blocco degli annunci più popolare per Safari. Although it can’t be compared to our desktop ad blocking apps, it's free and can protect you from ads, trackers, phishing, and malicious websites. +AdGuard per Safari è stato progettato per conformarsi alle restrizioni di Apple per le estensioni del browser di blocco degli annunci ed è il blocco degli annunci più popolare per Safari. Sebbene non sia comparabile con le nostre app di blocco delle inserzioni per desktop, è gratuita e può proteggerti da inserzioni, tracciatori, phishing e siti web dannosi. ## Scheda Generale -![General tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/General.png) +![Scheda Generali](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/General.png) -La prima scheda è la schermata Generale, dove puoi configurare cose fondamentali quali notifiche, intervalli di aggiornamento e avviare AdGuard all'avvio di sistema. Inoltre, puoi scegliere di mostrare l'icona di AdGuard nella barra dei menu. There you can also turn on content blockers to block ads, trackers, annoyances, etc. +La prima scheda è la schermata Generale, dove puoi configurare cose fondamentali quali notifiche, intervalli di aggiornamento e avviare AdGuard all'avvio di sistema. Inoltre, puoi scegliere di mostrare l'icona di AdGuard nella barra dei menu. Lì puoi anche abilitare i bloccatori di contenuti, per bloccare annunci, tracciatori, elementi di disturbo, etc. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md index 257fd7b7ffb..9b4cd223f5d 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md @@ -3,4 +3,4 @@ title: Regole dell'utente sidebar_position: 4 --- -Le regole dell'utente sono utilizzabili per personalizzare il blocco degli annunci. Possono essere aggiunte manualmente, importate o create automaticamente al blocco di un elemento su una pagina. To add your own filering rules, use a [special syntax](/general/ad-filtering/create-own-filters). +Le regole dell'utente sono utilizzabili per personalizzare il blocco degli annunci. Possono essere aggiunte manualmente, importate o create automaticamente al blocco di un elemento su una pagina. Per aggiungere le tue regole di filtraggio, utilizza una [sintassi speciale](/general/ad-filtering/create-own-filters). diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md index 1a411952ad3..525ceb8b243 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md @@ -43,12 +43,12 @@ AdGuard per Safari è un'app gratuita, presente sull'App Store. Per installarla Su macOS, clicca su *Preferenze* → *Siti web* → *Blocchi di contenuti*. Se desideri abilitare AdGuard su ogni sito web, *Abilita* "*Visitando altri siti web*". -![Mac Safari Content Blocker Setting](https://i0.imgs.ovh/2023/10/26/Fmc9U.png) +![Impostazione del Blocco di Contenuti di Safari del Mac](https://i0.imgs.ovh/2023/10/26/Fmc9U.png) -On iOS, go to *Settings* → *Safari* → *Content Blockers*, and set the option to *Yes*. +Su iOS, vai a *Impostazioni* → *Safari* → *Blocchi dei contenuti*, e imposta l'opzione a *Sì*. -![iOS Safari Content Blocker Setting](https://i0.imgs.ovh/2023/10/26/FmgM0.jpeg) +![Impostazione del Blocco di Contenuti di Safari di iOS](https://i0.imgs.ovh/2023/10/26/FmgM0.jpeg) Dopo aver completato i passaggi dall'1 al 4, AdGuard per Safari inizierà a funzionare. Puoi ora configurarne le impostazioni. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md index 4b36e1ee1d3..65a3da563eb 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md @@ -16,7 +16,7 @@ In alcuni casi, il filtro potrebbe non funzionare e gli annunci potrebbero comun 1. Apri Safari. 2. Fai clic su _Safari_ nel menu nell'angolo in alto a sinistra. 3. Fai clic su _Impostazioni…_ → _Estensioni_. -4. Clear the checkboxes for AdGuard’s extensions: _Custom_, _General_, _Other_, _Privacy_, _Security_, _Social_, _AdGuard for Safari_, and _AdGuard Assistant_. +4. Deseleziona le caselle di controllo per le estensioni di AdGuard: _Personalizzato_, _Generale_, _Altro_, _Privacy_, _Sicurezza_, _Social_, _AdGuard per Safari_ e _AdGuard Assistant_. ![Blocchi dei contenuti deselezionati](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) 5. Riavvia Safari. 6. Torna a _Impostazioni..._ → _Estensioni_ e riattiva le estensioni di blocco dei contenuti. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md index d98894854be..22fa5ba929f 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md @@ -16,7 +16,7 @@ Se il filtraggio non si interrompe quando AdGuard per Safari è disabilitato, è 1. Apri Safari. 2. Fai clic su _Safari_ nel menu nell'angolo in alto a sinistra. 3. Fai clic su _Impostazioni…_ → _Estensioni_. -4. Clear the checkboxes for AdGuard’s extensions: _Custom_, _General_, _Other_, _Privacy_, _Security_, _Social_, _AdGuard for Safari_, and _AdGuard Assistant_. +4. Deseleziona le caselle di controllo per le estensioni di AdGuard: _Personalizzato_, _Generale_, _Altro_, _Privacy_, _Sicurezza_, _Social_, _AdGuard per Safari_ e _AdGuard Assistant_. ![Blocchi dei contenuti deselezionati](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) 5. Riavvia Safari. 6. Torna a _Impostazioni..._ → _Estensioni_ e riattiva le estensioni di blocco dei contenuti. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index f7409ceb68f..c0730c76946 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -17,9 +17,13 @@ Per analizzare e diagnosticare vari problemi che potrebbero verificarsi con AdGu 2. Scorri verso il basso e fai clic su _Esporta registri_. 3. Scegli una posizione in cui salvare il file .zip e fai clic su _Salva_. -Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. +Ora puoi inviare questo file a support@adguard.com o allegarlo alla segnalazione di bug su GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard si impegna a proteggere la tua privacy. Seguiamo rigorosamente la nostra [Informativa sulla privacy](https://adguard.com/privacy/safari.html) e non raccogliamo alcuna informazione privata sugli utenti. Prima di inviare i registri al team di supporto, esamina il file poiché potrebbe contenere informazioni aggiuntive che non desideri condividere. Se contiene tali informazioni personali, ti consigliamo di eliminarle prima. + +::: 1. Apri il [repo GitHub di AdGuard per Safari](https://github.com/AdguardTeam/AdGuardForSafari/issues) e fai clic su _Nuovo problema_. 2. Invia i registri a devteam@adguard.com. Includi l'ora del bug e allega un link al tuo problema o il suo numero (appare come #numero accanto al titolo). diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 0c562f40e4c..a289aeffa80 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 1f4ad3482ce..925364491c3 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Questo articolo riguarda AdGuard per Windows, un blocco annunci multifunzionale ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard si impegna a proteggere la tua privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Prima di inviare i registri al team di supporto, esamina il file poiché potrebbe contenere informazioni aggiuntive che non desideri condividere. Se contiene tali informazioni personali, ti consigliamo di eliminarle prima. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 638f902a8d2..61fff05be51 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Questo articolo riguarda AdGuard per Windows, un blocco annunci multifunzionale ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 5dcd0f8cd17..c5ce0a5d083 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Questo articolo riguarda AdGuard per Windows, un blocco annunci multifunzionale ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index 396cb94fd2f..742d11da536 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Questo articolo riguarda AdGuard per Windows, un blocco annunci multifunzionale ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard si impegna a proteggere la tua privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Prima di inviare i registri al team di supporto, esamina il file poiché potrebbe contenere informazioni aggiuntive che non desideri condividere. Se contiene tali informazioni personali, ti consigliamo di eliminarle prima. + +::: 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 54513ca0b25..1badf367ef0 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard per iOS][ios-app] | [AdGuard per Safari][ext-saf] | [Blocco contenuti AdGuard][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:----------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard per iOS][ios-app] | [AdGuard per Safari][ext-saf] | [Blocco contenuti AdGuard][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:----------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: 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 61172548af8..443b23cf96b 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 @@ -3,74 +3,74 @@ title: Protezione da phishing e malware sidebar_position: 3 --- -Falling prey to phishing and malware remains a common issue. To enhance digital security, we’ve incorporated special filters in AdGuard products to shield you from malicious and phishing websites. To date, we’ve categorized over 15 million sites and built a database of 1.5 million websites known for phishing and malware. Using this database, AdGuard checks the websites you visit to protect you from online threats. +Cadere vittima di phishing e malware rimane un problema comune. Per migliorare la sicurezza digitale, abbiamo incorporato filtri speciali nei prodotti AdGuard per proteggerti da siti web dannosi e quelli di phishing. Ad oggi, abbiamo classificato oltre 15 milioni di siti e creato un database di 1,5 milioni di siti Web noti per phishing e malware. Utilizzando questo database, AdGuard controlla i siti web visitati per proteggerti dalle minacce online. ::: note -We strictly do not collect or use any information about the websites you visit. +Non raccogliamo né utilizziamo alcuna informazione sui siti web visitati. ::: -## How does AdGuard check websites?​ +## Come fa AdGuard a controllare i siti web?​ -Each time you visit a website, your local client exchanges information with our backend server in the form of hashes and hash prefixes. Based on this exchange, the local client determines whether or not the website is listed in the potentially dangerous websites database. There is a difference in the scope of this check for apps and extensions. +Ogni volta che visiti un sito web, il tuo client locale scambia informazioni con il nostro server di backend, nella forma di hash e prefissi di hash. A seconda di questo scambio, il client locale determina se il sito web è elencato nel database dei siti web potenzialmente pericolosi, oppure no. Esiste una differenza nell'ambito di questo controllo per app ed estensioni. -### In apps +### Nelle app -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 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. -![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png) +![Avviso DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png) -### In browser extensions +### Nelle estensioni di browser -Our browser extensions can only check domain names, not full URLs. 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. +Le nostre estensioni di browser possono controllare solo i nomi di dominio, non gli URL completi. Inoltre, non sono in grado di controllare le sottorichieste. Ciò significa che se nella pagina sono presenti elementi potenzialmente dannosi, questi verranno caricati anche se la pagina stessa proviene da un dominio sicuro. L'estensione non sarà in grado di proteggersi da essi. È inoltre importante notare che il controllo effettuato è asincrono, ovvero avviene contemporaneamente al caricamento della pagina, quindi è possibile che venga caricato anche del malware. -## Setting up phishing and malware protection in AdGuard products +## Configurazione della protezione da phishing e malware nei prodotti AdGuard -- **For Windows**: Activate the *Browsing Security* module in the *Settings* menu +- **Per Windows**: Attivare il modulo *Sicurezza di navigazione nel* menu *Impostazioni* -![Browsing Security in Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png) +![Sicurezza di navigazione in Windows](https://cdn.adtidy.org/content/kb/ad_blocker/general/windows.png) -- **For Mac**: Enable the *Security* module in *Preferences* +- **Per Mac**: attiva il modulo *Sicurezza* in *Preferenze* -![Security in Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png) +![Sicurezza in Mac](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_mac.png) -- **For Android**: Turn on *Browsing Security* in the *Protection* tab +- **Per Android**: attiva *Sicurezza navigazione* nella scheda *Protezione* -![Browsing security in Android *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_android.png) +![Sicurezza della navigazione in 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. Additionally, enable *DNS protection* and select one of the AdGuard DNS servers +- **Per iOS**: Anche se non esiste un modulo separato, è possibile andare in *Protezione di Safari* → *Filtri* → *Sicurezza* e attivare i filtri disponibili. Inoltre, abilita *Protezione DNS* e seleziona uno dei server DNS AdGuard -![Security in iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg) +![Sicurezza in iOS *mobile](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_ios.jpg) -- **For Browser extensions**: Enable *Phishing and malware protection* in the *Settings* tab. For enhanced protection, go to *Filters* → *Security* and activate available filters +- **Per le estensioni di browser**: attiva la *Protezione da phishing e malware* nella scheda *Impostazioni*. Per una maggiore protezione, vai su *Filtri* → *Sicurezza* e attiva i filtri disponibili ![Protezione da phishing e malware](https://cdn.adtidy.org/content/kb/ad_blocker/general/extension_protection.png) -- **For Private AdGuard DNS:** Enable malware protection in *Server settings* under *Security* +- **Per DNS AdGuard privato:** Abilita la protezione da malware in *Impostazioni del server* in *Sicurezza* -![Security in DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) +![Sicurezza in DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) -## What we block +## Cosa blocchiamo -We maintain two primary filters: one that protects against phishing and fraudulent websites that attempt to steal user credentials, and another that blocks access to websites known to distribute malware, which could lead to data loss, information leaks, or damage to your device. These filters also protect you from websites with various scams and fraudulent schemes. For more detailed information, refer to this [Wikipedia article](https://en.wikipedia.org/wiki/Phishing). +Manteniamo due filtri principali: uno che protegge dal phishing e dai siti web fraudolenti che tentano di rubare le credenziali dell'utente e un altro che blocca l'accesso ai siti web noti per distribuire malware, che potrebbe causare perdita di dati, fuga d'informazioni o danni al dispositivo. Questi filtri ti proteggono anche dai siti web con varie truffe e schemi fraudolenti. Per informazioni più dettagliate, consultare questo [articolo di Wikipedia](https://en.wikipedia.org/wiki/Phishing). -## Maintaining our filters +## Manutenzione dei nostri filtri -AdGuard maintains an extensive database of phishing and malware websites, and it’s updated regularly and automatically as new threats are discovered. We collect information from a variety of reliable, high-quality sources, both public and from other companies, and aggregate it into a common database of dangerous sites. +AdGuard mantiene un ampio database di siti web di phishing e malware e viene aggiornato regolarmente e automaticamente man mano che vengono scoperte nuove minacce. Raccogliamo informazioni da una varietà di fonti affidabili e di alta qualità, sia pubbliche che di altre società, e le aggreghiamo in un database comune di siti pericolosi. -We automatically analyze complaints about suspicious sites and spend a great deal of time keeping the database up-to-date, cleaning up false positives, and implementing mechanisms to prevent them in the future. +Analizziamo automaticamente i reclami relativi ai siti sospetti e dedichiamo molto tempo a mantenere aggiornato il database, eliminando i falsi positivi e implementando meccanismi per prevenirli in futuro. -### Want to help?​ +### Vuoi aiutare?​ -Any help is welcome! If you encounter a phishing or malware website, please report it to . +Ogni aiuto è ben accetto! Se incontri un sito web di phishing o malware, segnalalo a . -### False-positive responses​ +### Falsi positivi​ -Occasionally, some non-malicious websites are added to AdGuard’s filters. We do our best to reduce the percentage of false positives, but they still occur. If you encounter this behavior from AdGuard, please report the false positive to our technical support at . +Occasionalmente, alcuni siti web non dannosi vengono aggiunti ai filtri di AdGuard. Facciamo del nostro meglio per ridurre la percentuale di falsi positivi, ma si verificano comunque. Se riscontri questo comportamento da AdGuard, segnala il falso positivo al nostro supporto tecnico all'indirizzo . -## If you are suspicious about a website +## Se hai dubbi su un sito web -If you suspect that a certain website might be dangerous, check it first by using our [security check tool](https://reports.adguard.com/welcome.html). +Se sospetti che un certo sito web possa essere pericoloso, controllalo prima utilizzando il nostro [strumento di controllo della sicurezza](https://reports.adguard.com/welcome.html). -![Security check](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) +![Controllo della sicurezza](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) diff --git a/i18n/it/docusaurus-plugin-content-docs/current/general/userscripts.md b/i18n/it/docusaurus-plugin-content-docs/current/general/userscripts.md index 88e3b013aa4..77facbc0280 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/general/userscripts.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/general/userscripts.md @@ -1,108 +1,108 @@ --- -title: Script utente +title: Userscripts sidebar_position: 5 toc_max_heading_level: 4 --- -Userscripts (we also call them "extensions") are, de-facto, mini-programs written in JavaScript. They modify or extend the functionality of one or more websites. Many AdGuard users may be already familiar with such userscripts as AdGuard Assistant, Popup Blocker, and AdGuard Extra. +Gli userscript (li chiamiamo anche "estensioni") sono, di fatto, mini-programmi scritti in JavaScript. Essi, modificano o estendono la funzionalità di uno o più siti web. Molti utenti di AdGuard potrebbero già essere a conoscenza di certi userscript, come AdGuard Assistant, Popup Blocker e AdGuard Extra. -:::note Supported apps +:::note App supportate -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 può ampliare significativamente la funzionalità del sito web, agendo da gestore di userscript. Puoi aggiungere i tuoi script personalizzati o gestire quelli esistenti nei nostri tre prodotti: [AdGuard per Windows](/adguard-for-windows/features/extensions), [AdGuard per Android](/adguard-for-android/features/settings#userscripts) e [AdGuard per Mac](/adguard-for-mac/features/extensions). ::: -## Recommended AdGuard scripts +## Script di AdGuard consigliati -These userscripts come directly from the AdGuard developers, and we can guarantee that they are effective and safe. 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 expose yourself to a certain risk, as some scripts may be harmful to your computer. +Questi script utente provengono direttamente dagli sviluppatori di AdGuard e possiamo garantire che siano efficienti e sicuri. Per alcuni degli script utente sviluppati da altri che consideriamo buoni e affidabili, [scorri verso il basso fino alla sezione successiva](#top-picks). Di seguito puoi anche trovare alcuni dei [siti web popolari con script](#more-userscripts), ma ricorda che ogni volta che scarichi uno script utente da una fonte sconosciuta, ti esponi a un certo rischio, poiché alcuni script potrebbero essere dannosi al tuo computer. ### AdGuard Extra -An extension that blocks ads in difficult cases when the usual filter-based approach is not enough. AdGuard Extra comes pre-installed with all premium AdGuard versions, so you don't need to do anything to enable it. However, if you want to use it alongside AdGuard Browser Extension or any other ad blocker, you'll need to use an additional extension. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/AdGuardExtra). +C'è un'estensione che blocca gli annunci in casi difficili, quando il solito approccio basato sui filtri non è sufficiente. AdGuard Extra è preinstallato in tutte le versioni premium di AdGuard, quindi, non devi fare nulla per abilitarla. Tuttavia, se desideri utilizzarla insieme all'Estensione di browser AdGuard o qualsiasi altro bloccatore di annunci, dovrai utilizzare un'ulteriore estensione. Scopri di più su questo script utente e su come installarlo, su [GitHub](https://github.com/AdguardTeam/AdGuardExtra). ![AdGuard Extra](https://cdn.adtidy.org/content/kb/ad_blocker/general/adguard-extra.png) ### AdGuard Popup Blocker -The name speaks for itself: it blocks pop-ups — one of the most annoying types of ads on web pages. Learn more about this userscript, its key features, and how to install it on [GitHub](https://github.com/AdguardTeam/PopupBlocker). +Il nome dice tutto: blocca i popup, uno dei tipi più fastidiosi di annunci sulle pagine web. Scopri di più su questo script utente, sulle sue funzionalità principali e su come installarlo, su [GitHub](https://github.com/AdguardTeam/PopupBlocker). ![AdGuard Popup Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png) -### AdGuard Assistant (legacy version) +### AdGuard Assistant (versione ereditaria) -This custom extension is designed to control filtering directly from the browser page (manual blocking, exclusion of the site, etc.). +Questa estensione personalizzata è progettata per controllare il filtraggio direttamente dalla pagina web (blocco manuale, esclusione del sito, etc.). :::note -This version of Assistant is legacy and there is no point in using it on new systems, since it has been replaced with the full-fledged [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). But the legacy Assistant might be of help if there is no Browser Assistant for your browser. If this is your case, your can learn how to install AdGuard Assistant on [GitHub](https://github.com/AdguardTeam/AdguardAssistant). +Questa versione di Assistant è ereditaria e non ha senso utilizzarla sui nuovi sistemi, poiché è stata sostituita dalla versione completa di [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). Ma l'Assistant ereditario potrebbe tornare utile se non esiste alcun Browser Assistant per il tuo browser. Se questo è il tuo caso, puoi scoprire come installare AdGuard Assistant su [GitHub](https://github.com/AdguardTeam/AdguardAssistant). ::: ### Disable AMP -A script that is only pre-installed in AdGuard for Android. It disables AMP (Accelerated Mobile Pages) on the Google search results page. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/DisableAMP). +Uno script preinstallato soltanto su AdGuard per Android. Disabilita AMP (Pagine Mobili Accelerate) sulla pagina dei risultati di ricerca di Google. Scopri di più su questo script utente e su come installarlo, su [GitHub](https://github.com/AdguardTeam/DisableAMP). ![Disable AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) -## Top picks outside AdGuard{#top-picks} +## Le migliori scelte al di fuori di 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 as they've all earned their good reputation. +Questi script utente non sono sviluppati da AdGuard e quindi non possiamo garantire al 100% che siano sicuri e/o funzionino sempre. Tuttavia, secondo la nostra esperienza, meritano una raccomandazione poiché si sono tutti guadagnati una buona reputazione. ### 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. +Questo script rimuove la funzionalità di monitoraggio di Google dai collegamenti nei risultati di ricerca di Google. Accelera il caricamento dei risultati di ricerca e consente di fare clic con il pulsante destro del mouse o toccare per copiare l'URL del collegamento. -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. +Il suo codice sorgente è [disponibile su GitHub](https://github.com/Rob--W/dont-track-me-google). Questo script utente può essere scaricato da [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) e installato in qualsiasi app basata su AdGuard CoreLibs. ### microShield -A userscript for people who visit Korean websites and some international websites. The microShield userscript blocks Ad-Shield advertisement and anti-adblock. 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). +Uno script utente per coloro che visitano siti web coreani e alcuni siti web internazionali. Lo script utente microShield blocca gli annunci di Ad-Shield e l'anti-blocco degli annunci. Il suo codice sorgente originali è disponibile su [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) e su [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). Questo script utente si può installare nelle app basate su AdGuard CoreLibs, Violentmonkey, Tampermonkey e [quoid/userscripts](https://github.com/quoid/userscripts). Scopri di più su microShield e su come installarlo su [GitHub](https://github.com/List-KR/microShield). -## Where can you get more userscripts?{#more-userscripts} +## Dove puoi ottenere altri userscript?{#more-userscripts} -As 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. +Poiché gli script utente sono creati principalmente da appassionati, dovresti essere cauto quando li installi. Qualsiasi script proveniente da una fonte sconosciuta comporta un potenziale rischio. Tuttavia, esiste una grande varietà di script interessanti che, se installati con attenzione e responsabilità, possono davvero rendere più conveniente l'utilizzo di alcuni siti web. -Here we will describe some of the most popular userscript catalogs. +Qui, descriveremo alcuni dei cataloghi di userscript più popolari. ### Stylish (userstyles.org) -[Userstyles.org](https://userstyles.org/) is a catalog of user styles, but it allows you to load them as userscripts. Thus, any user style can be installed via AdGuard. Be careful if you decide to install an unpopular script — there's a risk it might be harmful. +[Userstyles.org](https://userstyles.org/) è un catalogo di stili utente, ma ti consente di caricarli come script utente. Dunque, ogni stile utente è installabile tramite AdGuard. Sii cauto se decidi d'installare uno script non popolare: è possibile che sia dannoso. ### Greasy Fork -[Greasy Fork](https://greasyfork.org/) is a userscript catalog by Stylish creators. Unlike the above-mentioned userstyles.org, the scripts in this catalog undergo moderation, so their credibility is much higher. +[Greasy Fork](https://greasyfork.org/) è un catalogo di userscript dai creatori di Stylish. A differenza del suddetto userstyles.org, gli script in questo catalogo sono sottoposti a moderazione, quindi, la loro credibilità è molto più elevata. ### OpenUserJS.org -[OpenUserJS.org](https://openuserjs.org/) is an open source userscript catalog written in nodeJS. It doesn't have moderation so stay alert to any suspicious scripts. +[OpenUserJS.org](https://openuserjs.org/) è un catalogo di userscript open source, scritto in nodeJS. Non prevede moderazione, quindi stai attento a eventuali script sospetti. -### Community +### Comunità -If you like the idea of personifying your browser with the help of userscripts, and you have any questions, you can ask them on one of these websites: +Se ti piace l'idea di personalizzare il tuo browser con l'aiuto degli userscript e hai qualsiasi domanda, puoi porle su uno di questi siti web: - [Stackoverflow](https://stackoverflow.com/questions/tagged/userscripts) - [FreeNode](https://webchat.freenode.net/#greasemonkey) - [Reddit](https://www.reddit.com/r/userscripts/) -## Development +## Sviluppo -### Request license +### Richiedi la licenza -If you are developing your own custom script and want to test how it works with AdGuard, request a beta license key for the app. +Se stai sviluppando il tuo script personalizzato e desideri testare come funziona con AdGuard, richiedi una chiave di licenza beta per l'app. -To get it, please send an email to devteam@adguard.com with the following information: +Per ottenerla, sei pregato di inviare un'email a devteam@adguard.com con le seguenti informazioni: -**Subject:** Userscript author license request +**Soggetto:** Userscript author license request -**Body:** Please tell us about the userscripts you are working on. +**Corpo:** Sei pregato di parlarci degli userscript a cui stai lavorando. -Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). +Ecco il [link per inviare la mail](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). -### Compatibility +### Compatibilità -#### Metadata block +#### Blocco dei metadati -##### Supported properties +##### Proprietà supportate ```text @name @@ -132,23 +132,23 @@ Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%2 @icon64URL ``` -##### Unsupported properties +##### Proprietà non supportate -These properties will be simply ignored by Adguard. +Queste proprietà saranno semplicemente ignorate da AdGuard. ```text @unwrap ``` -#### Supported GM functions +#### Funzioni GM supportate -AdGuard supports both old GM\_ functions and new GM4 API that use GM object. +AdGuard supporta sia le vecchie funzionalità GM\_ che la nuova API GM4, che utilizza l'oggetto GM. -##### Values +##### Valori :::note -All listed old Greasemonkey functions are deprecated but still supported. +Tutte le funzionalità di Greasemonkey elencate sono deprecate, ma ancora supportate. ::: @@ -169,9 +169,9 @@ GM_addStyle GM_log ``` -[Here](https://wiki.greasespot.net/GM.info) you can find more information about Greasemonkey API. +[Qui](https://wiki.greasespot.net/GM.info) puoi trovare ulteriori informazioni sull'API di Greasemonkey. -### Example +### Esempio ```javascript // ==UserScript== diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index 51d906e58c6..d4eeb977a20 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index bdbfdc93e6a..bed628c5524 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + この記事では、複雑な問題を解決するために不可欠なトラブルシューティングのステップである、デバッグログというものの収集方法をご紹介しています。 Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 5a0cd15c26b..c9b87e7d0bc 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md index 0afef2340db..f5cb777d34b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md @@ -3,12 +3,12 @@ title: AdGuardについて sidebar_position: 5 --- -![About tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/About.png) +![このアプリについてタブ](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/About.png) 「このアプリについて」タブでは、AdGuard for Safari の現在のバージョンに関する情報や法的文書へのリンクをご確認いただけます。 GitHubリポジトリへのリンクもあります。 GitHubでは、製品開発のプロセスを確認し、機能要求を作成したり、バグを報告したりすることができます。 -:::note Reminder +:::note リマインダー -AdGuard for Safari can be downloaded for free [from the App Store](https://apps.apple.com/app/adguard-for-safari/id1440147259). A detailed setup instruction is available in the [Knowledge base](/adguard-for-safari/installation/). +AdGuard for Safari は無料で [App Store からダウンロード](https://apps.apple.com/app/adguard-for-safari/id1440147259)できます。 詳しいセットアップ手順は、[こちらのナレッジベース記事](/adguard-for-safari/installation/)にあります。 ::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md index 4fd238b2150..e1be5d4fcc9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md @@ -3,6 +3,6 @@ title: AdGuard カスタム sidebar_position: 7 --- -![Custom tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/AGCustom.png) +![カスタムタブ](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/AGCustom.png) -If you need more filters, you can add them to _AdGuard Custom_. カスタムフィルタを追加するには、該当するフィールドにフィルタのURLまたはローカルファイルのパスを入力します。 You can find new filters at [filterlists.com](https://filterlists.com/). +既存以外のフィルタを使用したい場合は、「AdGuard カスタム」にフィルタを追加できます。 カスタムフィルタを追加するには、該当するフィールドにフィルタのURLまたはローカルファイルのパスを入力します。 [filterlists.com](https://filterlists.com) で様々なフィルタを見つけることができます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md index 09b1efd163a..9865d89abe7 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md @@ -3,4 +3,4 @@ title: AdGuard 一般 sidebar_position: 2 --- -_AdGuard General_ is a content blocker that combines the most essential filters for blocking ads. 特に、「AdGuard ベースフィルタ」は常に有効にしておくことをお勧めします。 +「_AdGuard 一般_」は、広告をブロックするために最も重要なフィルタを組み合わせたコンテンツブロッカーです。 特に、「AdGuard ベースフィルタ」は常に有効にしておくことをお勧めします。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md index 8e4ff6be20b..a443d571fb4 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md @@ -3,10 +3,10 @@ title: AdGuard その他 sidebar_position: 6 --- -_AdGuard Other_ contains filters with various functions. 例えば、検索広告や自己宣伝広告のブロックを解除するフィルターがあります。 場合によっては、この種の広告は他の広告よりも関連性が高く、邪魔にならないため、探しているものを正確に見つけるのに役立つので、有効にすることが便利だったりします。 +「_AdGuard その他_」には、さまざまな追加機能を持つフィルタが含まれています。 例えば、検索広告や自己宣伝広告のブロックを解除するフィルターがあります。 場合によっては、この種の広告は他の広告よりも関連性が高く、邪魔にならないため、探しているものを正確に見つけるのに役立つので、有効にすることが便利だったりします。 -:::note Disclaimer +:::note 重要 -We don’t have any ‘acceptable ads’ paid by advertisers. Instead, we provide users with an option to see [search ads and websites' self-promotion](/general/ad-filtering/search-ads). +AdGuard には、広告主から報酬を受けてブロックしない「控えめな広告」等は一切ありません。 代わりに、ユーザーご自身が、[検索広告とウェブサイトの自己宣伝広告を表示](/general/ad-filtering/search-ads)できるオプションを提供しています。 ::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md index 093228b3499..bf2ecd59c18 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md @@ -3,4 +3,4 @@ title: AdGuard プライバシー sidebar_position: 3 --- -このコンテンツブロッカーは、カウンターやその他のウェブ解析・追跡ツールに対抗する主要なツールです。 The _AdGuard Tracking Protection filter_ is enabled by default. +このコンテンツブロッカーは、カウンターやその他のウェブ解析・追跡ツールに対抗する主要なツールです。 「_AdGuard 追跡防止フィルタ_」はデフォルトで有効になっています。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md index 33de50b03ba..1088c821a08 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md @@ -3,4 +3,4 @@ title: AdGuard セキュリティ sidebar_position: 5 --- -このコンテンツブロッカーは、いくつかのセキュリティ関連フィルタを統合しています。 _Malware Domains Blocklist_ blocks domains that are notorious for spreading malware and spyware. _Spam404_ protects you from Internet fraudsters. _NoCoin Filter List_ disrupts browser-based cryptominers, such as Coinhive. +このコンテンツブロッカーは、いくつかのセキュリティ関連フィルタを統合しています。 _Malware Domains Blocklist_ は、マルウェアやスパイウェアの拡散で悪名高いドメインをブロックします。 _Spam404_ は、インターネット詐欺師からあなたを守ります。 _NoCoin Filter List_ は、Coinhiveのようなブラウザベースのクリプトマイナー(仮想通貨をマイニングするマルウェア)の動作を防止します。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md index 0981065681c..e25d77837c9 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md @@ -3,4 +3,4 @@ title: AdGuard ソーシャル sidebar_position: 4 --- -_AdGuard Social_ contains filters against social media buttons, widgets, scripts, and icons. ポップアップ、モバイルアプリのバナー、クッキー同意通知など、その他の迷惑要素フィルターもこのセクションに含まれます。 To enable them, find _Social Widgets_ in the Filters tab. +「_AdGuard ソーシャル_」には、SNS系ボタン、ウィジェット、スクリプト、アイコンに対するフィルタが含まれています。 ポップアップ、モバイルアプリのバナー、クッキー同意通知など、その他の迷惑要素フィルターもこのセクションに含まれます。 これらを有効にするには、「フィルタ」タブで「_SNSウィジェット_」を見つけてください。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md index 56e8866eff2..c80b992862b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md @@ -1,17 +1,17 @@ --- -title: What is a content blocker? +title: コンテンツブロッカーとは? sidebar_position: 1 --- -![Content blockers tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Contentblockers.png) +![コンテンツブロッカー](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Contentblockers.png) -コンテンツブロッカーとは、テーマ別のフィルタ群です。 Privacy-related filters are included in the content blocker with the corresponding name — _AdGuard Privacy_. +コンテンツブロッカーとは、テーマ別のフィルタ群です。 プライバシー関連のフィルタは、「_AdGuard プライバシー_」というコンテンツブロッカーに含まれています。 コンテンツブロッカーが設計された理由は2つあります:フィルタを構成するためと、Appleの制約に適合させるためです。 -[In 2019](https://adguard.com/en/blog/adguard-safari-1-5.html), Apple put limitations on ad blockers for Safari, allowing them to use only 50,000 filtering rules simultaneously. 広告ブロッカーとして十分なフィルタリングクオリティを提供するにはこの数では不十分であったため(AdGuard ベースフィルタだけでも30,000のフィルタリングルールがある)、AdGuard for Safari を6つのコンテンツブロッカーに分割し、それぞれに最大50,000のルールを含ませることにしました。 +[2019年](https://adguard.com/ja/blog/adguard-safari-1-5.html)、AppleはSafari用の広告ブロッカーに制約を設け、同時に使用できるフィルタリングルールは5万件までと制限しました。 広告ブロッカーとして十分なフィルタリングクオリティを提供するにはこの数では不十分であったため(AdGuard ベースフィルタだけでも30,000のフィルタリングルールがある)、AdGuard for Safari を6つのコンテンツブロッカーに分割し、それぞれに最大50,000のルールを含ませることにしました。 -[In 2022](https://adguard.com/en/blog/adguard-for-safari-1-11.html), Apple increased the filtering rule limit for each content blocker to 150,000 rules applied simultaneously. そのため、AdGuard for Safari では、6つのコンテンツブロッカーすべてを使って、最大90万のルールを有効にすることができます。 +[2022年](https://adguard.com/ja/blog/adguard-for-safari-1-11.html)、アップルは各コンテンツブロッカーの、同時に適用できるフィルタリングルール上限を15万ルールに引き上げました。 そのため、AdGuard for Safari では、6つのコンテンツブロッカーすべてを使って、最大90万のルールを有効にすることができます。 上限が引き上げられたとはいえ、コンテンツブロッカーの構造は変わっていません。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md index a492e7a7eaa..53b2211fccf 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md @@ -3,12 +3,12 @@ title: フィルタ sidebar_position: 2 --- -![Filters tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Filters.png) +![フィルタタブ](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Filters.png) フィルタとは、特別な構文で書かれたルールのリストです。 これらのルールに従って、コンテンツブロッカーはウェブトラフィックをフィルタリングし、広告や悪質なウェブサイトへのリクエストをブロックすることができるようになります。 -Filters are combined into eight thematic categories: _Ad Blocking, Privacy, Social widgets, Annoyances, Security, Language-specific filters, Custom, and Other filters_. +フィルタは全部で8つのテーマ別カテゴリに結合されています: _広告ブロック、プライバシー、SNSウィジェット、迷惑要素、セキュリティ、言語特化フィルタ、カスタム、その他_ -Read more about [AdGuard filters](/general/ad-filtering/adguard-filters) or [ad filtering in general](/general/ad-filtering/how-ad-blocking-works). +[AdGuardフィルタについてはこちら](/general/ad-filtering/adguard-filters)、[広告フィルタリング全般についてはこちら](/general/ad-filtering/how-ad-blocking-works)でもっと読むことができます。 「フィルタ」タブでは、カテゴリー全体または個別のフィルタを有効・無効にすることができます。 「フィルタ」タブでの変更は、(「一般設定」タブにある)「コンテンツブロッカー」セクションにも反映されます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md index 6495421bb73..c303086f82e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md @@ -9,10 +9,10 @@ sidebar_position: 1 ::: -AdGuard for Safari は、広告をブロックするブラウザ拡張機能に対するApple制約に適合するように設計されており、Safari用の最も人気のある広告ブロッカーです。 Although it can’t be compared to our desktop ad blocking apps, it's free and can protect you from ads, trackers, phishing, and malicious websites. +AdGuard for Safari は、広告をブロックするブラウザ拡張機能に対するApple制約に適合するように設計されており、Safari用の最も人気のある広告ブロッカーです。 機能面ではデスクトップ版広告ブロッカーアプリとは比べ物になりませんが、無料で広告、トラッカー、フィッシング、悪質なウェブサイトからあなたを守ることができます。 ## 一般設定タブ -![General tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/General.png) +![一般タブ](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/General.png) -最初のタブである「一般設定」画面においては、通知、更新頻度、システム起動時の AdGuard 起動など、基本的なことを設定できます。 メニューバーに AdGuard アイコンを表示するかどうかを設定することもできます。 There you can also turn on content blockers to block ads, trackers, annoyances, etc. +最初のタブである「一般設定」画面においては、通知、更新頻度、システム起動時の AdGuard 起動など、基本的なことを設定できます。 メニューバーに AdGuard アイコンを表示するかどうかを設定することもできます。 また、コンテンツブロッカーをオンにして、広告、トラッカー、迷惑要素などをブロックすることもできます。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md index 1941584d65d..7c366181d49 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md @@ -3,4 +3,4 @@ title: ユーザールール sidebar_position: 4 --- -ユーザールールは、広告ブロックの効果をカスタマイズするために使用することができます。 ユーザールールは、手動で追加することも、インポートすることも、ページ上の要素をブロックしたときに自動的に作成することもできます。 To add your own filering rules, use a [special syntax](/general/ad-filtering/create-own-filters). +ユーザールールは、広告ブロックの効果をカスタマイズするために使用することができます。 ユーザールールは、手動で追加することも、インポートすることも、ページ上の要素をブロックしたときに自動的に作成することもできます。 独自のフィルタリングルールを追加するには、[専用の構文](/general/ad-filtering/create-own-filters)を使ってください。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md index 8af3009ba85..1ff453e95e5 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md @@ -16,7 +16,7 @@ AdGuard for Safari と適切なフィルタが有効になっていても、フ 1. Safariを開きます。 2. 左上のメニューで「_Safari_」をクリックします。 3. 「_環境設定…_」→「_拡張機能_」をクリックします。 -4. Clear the checkboxes for AdGuard’s extensions: _Custom_, _General_, _Other_, _Privacy_, _Security_, _Social_, _AdGuard for Safari_, and _AdGuard Assistant_. +4. これらの AdGuard 拡張機能チェックボックスをオフにします: [_カスタム_]、[_一般_]、[_その他_]、[_プライバシー_]、[_セキュリティ_]、[_ソーシャル_]、[_AdGuard for Safari_]、[_AdGuard アシスタント_] ![チェックを外したコンテンツブロッカー](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) 5. Safari を再起動します。 6. Safari→「_環境設定..._」→「_拡張機能_」に戻り、AdGuardのコンテンツブロッカー拡張機能6つを再度有効にします。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md index 9978d4c233f..b5e981e9dca 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md @@ -16,7 +16,7 @@ AdGuard for Safari を無効にしてもフィルタリング(広告ブロッ 1. Safariを開きます。 2. 左上のメニューで「_Safari_」をクリックします。 3. 「_環境設定…_」→「_拡張機能_」をクリックします。 -4. Clear the checkboxes for AdGuard’s extensions: _Custom_, _General_, _Other_, _Privacy_, _Security_, _Social_, _AdGuard for Safari_, and _AdGuard Assistant_. +4. これらの AdGuard 拡張機能チェックボックスをオフにします: [_カスタム_]、[_一般_]、[_その他_]、[_プライバシー_]、[_セキュリティ_]、[_ソーシャル_]、[_AdGuard for Safari_]、[_AdGuard アシスタント_] ![チェックを外したコンテンツブロッカー](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) 5. Safari を再起動します。 6. Safari→「_環境設定..._」→「_拡張機能_」に戻り、AdGuardのコンテンツブロッカー拡張機能6つを再度有効にします。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 3b067ab7bd5..5216471a411 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -17,10 +17,14 @@ AdGuard for Safari で発生した問題を分析および診断するために 2. 下にスクロールし、「_ログをエクスポートする_」をクリックします。 3. .zipファイルを保存する場所を指定し、「_保存_」をクリックします。 -Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. +これで、このログファイルをAdGuardサポート(support@adguard.com)に送信するか、GitHub のバグレポートに添付できます。GitHubの場合の添付方法は以下の通りです: -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note -1. [AdGuard for Safari の GitHub リポジトリ](https://github.com/AdguardTeam/AdGuardForSafari/issues)を開き、_New issue_ をクリックします。 -2. ログファイルを devteam@adguard.com に送信してください。 メールにバグの発生時刻とissueへのリンクまたはissue番号(番号はissueタイトルの横に#○○として表示されます)を記載してください。 - もう一つの方法として、ログファイルをGoogle Driveにアップロードして、devteam@adguard.comにリンクを送りください。 GitHub のissueにもファイルへのリンクを追加してください。 +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). + Alternatively, you can upload the log file to Google Drive and send it to devteam@adguard.com. Add the file link to your GitHub issue. diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 1f4d1635e16..8367a177c2f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index fc36a4a2056..72263058e56 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ sidebar_position: 3 ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index ad21b21651c..a27331d5f89 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ sidebar_position: 8 ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 2ffded939c0..aa0b9ca203e 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ sidebar_position: 4 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index 3e7eea32f10..dbca398e36f 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ sidebar_position: 5 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 6d9c81152e9..43291d700ac 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuardコンテンツブロッカー][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuardコンテンツブロッカー][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/intro.md b/i18n/ja/docusaurus-plugin-content-docs/current/intro.md index a8310322442..ddd60fd78de 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/intro.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/intro.md @@ -6,18 +6,18 @@ slug: / ## AdGuard 広告ブロッカーとは何ですか? -AdGuard is one of the leaders on the market of ad-blocking software with 15+ years of experience, almost a dozen products for various platforms, and over 375 million user installs. Unlike other ad-blocking solutions, most of which are browser-based, we offer standalone apps for all major platforms, both desktop and mobile. AdGuard apps are more powerful than browser extensions, can block more and do it more efficiently: +AdGuard は、15 年以上の経験、さまざまなプラットフォーム向けの10種類近くの製品、累計ダウンロード数3億7,500万の突破を誇る、広告ブロックソフトウェア業界のリーダー企業です。 他社の広告ブロックソリューションの多くはブラウザベースであるのに対し、私たちは主要なプラットフォーム(iOS/Android/Windows/Mac)に対応した、デスクトップ版とモバイル版の両方のスタンドアロンアプリを提供しています。 AdGuard のアプリは、ブラウザの拡張機能よりも強力で、より多くのものをより効率的にブロックすることができます: - [AdGuard for Windows](/adguard-for-windows/features/home-screen) - [AdGuard for Mac](/adguard-for-mac/features/main) - [AdGuard for Android](/adguard-for-android/features/protection/ad-blocking) - [AdGuard for iOS](/adguard-for-ios/features/safari-protection) -But we also develop and maintain free browser extensions for all popular browsers: +また、一般的なブラウザ向けの無料ブラウザ拡張機能の開発とメンテナンスも行っております: - [AdGuard ブラウザ拡張機能](/adguard-browser-extension/features/filters) - [AdGuard for Safari](/adguard-for-safari/features/general) -## Not just ad blocking +## 広告ブロック以外の機能もたくさんあります -AdGuard Ad Blocker does more than just block ads. It will protect you from online tracking and enhance your privacy in many ways. Depending on the specific product, AdGuard can also offer such perks as DNS filtering for more rounded-up protection, Parental Control to shield your kids from inappropriate content, Filtering log to have better control over your internet traffic, and more. This Knowledge base contains detailed information about any and all of them — feel free to jump to any article that interests you. +AdGuard 広告ブロッカーは、広告をブロックするだけではありません。 トラッキングから守り、さまざまな方法であなたのオンラインプライバシーを強化してくれます。 各製品によって、保護層を増やしてくれる*DNSフィルタリング*、不適切なコンテンツから子供を守る*ペアレンタルコントロール*、インターネットトラフィックを制御するための*フィルタリングログ*などという機能も提供しています。 本ナレッジベースには、各製品の機能に関する詳細な情報が含まれています。左側の目次(スマホの場合は左上の「≡」アイコン)から、興味のある記事にジャンプしてお読みください。 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 d45cdf06883..1ee3aca1a9d 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 @@ -5,7 +5,7 @@ sidebar_position: 2 :::info -브라우저만 보호하는 AdGuard 브라우저 확장 프로그램에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +브라우저만 보호하는 AdGuard 브라우저 확장 프로그램에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md index 092aa8dcf44..08fd707c27a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/comparison-standalone.md @@ -5,7 +5,7 @@ sidebar_position: 7 :::info -브라우저만 보호하는 AdGuard 브라우저 확장 프로그램에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +브라우저만 보호하는 AdGuard 브라우저 확장 프로그램에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md index 724844b044e..cc063d2747e 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md @@ -5,7 +5,7 @@ sidebar_position: 4 :::info -브라우저만 보호하는 AdGuard 브라우저 확장 프로그램에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +브라우저만 보호하는 AdGuard 브라우저 확장 프로그램에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index c0bc49e43db..fac4cfab793 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## 로그 전송하기 -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note -로그를 저장했다면, 다음 단계에 따라 개발팀에 제출해 주세요. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. -1. [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose)에 버그를 제보하세요. -2. 로그와 재생 시간이 포함된 ZIP 파일을 `devteam@adguard.com`로 보내고 GitHub 이슈에 링크를 추가합니다. 파일을 첨부하는 대신 Google 드라이브에 ZIP 파일을 업로드하고 링크를 추가할 수도 있습니다. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index 8f7322adadb..d046e29f8d4 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## HAR 파일이란 무엇인가요? HAR(HTTP ARchive) 형식은 웹 브라우저와 사이트 간의 상호 작용을 로깅하기 위한 JSON 형식의 아카이브 파일로, 브라우저가 불러오는 웹 페이지에 대한 자세한 정보를 내보내는 데 이용되는 HTTP 트랜잭션에 대한 보관 데이터를 정의합니다. HAR 파일 형식에 대한 자세한 내용은 [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/)에서 확인하실 수 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index b2f87e6ba98..e65a8f32938 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 이 글에서는 디버그 로그를 수집하는 방법을 설명합니다. 디버그 로그는 잠재적으로 복잡한 문제를 해결하는 데 필요합니다. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 11fc3d7868a..6def99858a2 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## 기기에서 버그 보고서 받기 기기에서 직접 버그 보고서를 받으려면 다음을 수행하십시오. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md index 191584bdc7b..eb9b20a3fc8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/about.md @@ -3,12 +3,12 @@ title: 정보 sidebar_position: 5 --- -![About tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/About.png) +![정보 탭](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/About.png) 정보 탭에서 제품의 현재 버전에 대한 정보와 법률 문서 링크를 확인할 수 있습니다. GitHub의 리포지토리 링크도 있습니다. 여기에서 제품 개발을 확인할 수 있습니다. 새로운 기능을 제안하고 버그를 신고할 수도 있습니다. -:::note Reminder +:::note 알림 -AdGuard for Safari can be downloaded for free [from the App Store](https://apps.apple.com/app/adguard-for-safari/id1440147259). A detailed setup instruction is available in the [Knowledge base](/adguard-for-safari/installation/). +Safari용 AdGuard는 [App Store에서](https://apps.apple.com/app/adguard-for-safari/id1440147259) 무료로 다운로드할 수 있습니다. 자세한 설정 방법은 [지식 창고](/adguard-for-safari/installation/)에서 확인할 수 있습니다. ::: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md index e9206a18f0e..14fbf13b9c7 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-custom.md @@ -3,6 +3,6 @@ title: AdGuard Custom sidebar_position: 7 --- -![Custom tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/AGCustom.png) +![사용자 정의 탭](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-length_review/AGCustom.png) -If you need more filters, you can add them to _AdGuard Custom_. 사용자 정의 필터를 추가하려면 해당 필드에 URL 또는 로컬 파일 경로를 입력하세요. You can find new filters at [filterlists.com](https://filterlists.com/). +더 많은 필터가 필요한 경우, **AdGuard 커스텀**에 필터를 추가할 수 있습니다. 사용자 정의 필터를 추가하려면 해당 필드에 URL 또는 로컬 파일 경로를 입력하세요. [filterlists.com](https://filterlists.com/)에서 새 필터를 찾을 수 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md index 286d122146e..05b219d4a85 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-general.md @@ -3,4 +3,4 @@ title: AdGuard General sidebar_position: 2 --- -_AdGuard General_ is a content blocker that combines the most essential filters for blocking ads. AdGuard 베이스 필터를 활성화해 두는 것이 좋습니다. +**AdGuard General**은 광고 차단에 가장 필수적인 필터를 갖춘 콘텐츠 차단기입니다. AdGuard 베이스 필터를 활성화해 두는 것이 좋습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md index 96d90ebc5dc..06d4a7517b5 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-other.md @@ -3,10 +3,10 @@ title: AdGuard Other sidebar_position: 6 --- -_AdGuard Other_ contains filters with various functions. 예를 들어, 검색 광고와 자체 홍보 광고의 차단을 해제하는 필터가 있습니다. 이러한 종류의 광고는 다른 광고보다 관련성이 높고 방해가 덜하기 때문에 어떤 경우에는 원하는 것을 찾는 데 도움이 됩니다. +**AdGuard 기타**에는 다양한 기능을 갖춘 필터가 포함되어 있습니다. 예를 들어, 검색 광고와 자체 홍보 광고의 차단을 해제하는 필터가 있습니다. 이러한 종류의 광고는 다른 광고보다 관련성이 높고 방해가 덜하기 때문에 어떤 경우에는 원하는 것을 찾는 데 도움이 됩니다. -:::note Disclaimer +:::note 주의사항 -We don’t have any ‘acceptable ads’ paid by advertisers. Instead, we provide users with an option to see [search ads and websites' self-promotion](/general/ad-filtering/search-ads). +광고주가 지불한 '허용되는 광고'가 없습니다. 대신 사용자에게 [검색 광고와 웹사이트의 자체 홍보](/general/ad-filtering/search-ads)를 볼 수 있는 옵션을 제공합니다. ::: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md index f6f4def4e5f..1eef3905f44 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-privacy.md @@ -3,4 +3,4 @@ title: AdGuard Privacy sidebar_position: 3 --- -이 콘텐츠 차단기는 카운터 및 웹 분석 도구로부터 보호합니다. The _AdGuard Tracking Protection filter_ is enabled by default. +이 콘텐츠 차단기는 카운터 및 웹 분석 도구로부터 보호합니다. **AdGuard 추적 보호 필터**는 기본적으로 활성화되어 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md index bb3ab5b170e..5cfde575903 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-security.md @@ -3,4 +3,4 @@ title: AdGuard Security sidebar_position: 5 --- -이 콘텐츠 차단기는 여러 보안 관련 필터를 통합합니다. _Malware Domains Blocklist_ blocks domains that are notorious for spreading malware and spyware. _Spam404_ protects you from Internet fraudsters. _NoCoin Filter List_ disrupts browser-based cryptominers, such as Coinhive. +이 콘텐츠 차단기는 여러 보안 관련 필터를 통합합니다. **Malware Domains Blocklist**는 멀웨어 및 스파이웨어를 유포하는 도메인을 차단합니다. **Spam404**는 인터넷 사기꾼으로부터 사용자를 보호합니다. **NoCoin Filter List**는 Coinhive와 같은 브라우저 기반 크립토마이너를 차단합니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md index c4e46e9247a..e0ee061530c 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/adguard-social.md @@ -3,4 +3,4 @@ title: AdGuard Social sidebar_position: 4 --- -_AdGuard Social_ contains filters against social media buttons, widgets, scripts, and icons. 팝업, 모바일 앱 배너, 쿠키 알림을 차단하는 필터와 같은 다른 방해 요소 필터도 이 섹션에서 찾을 수 있습니다. To enable them, find _Social Widgets_ in the Filters tab. +**AdGuard Social**에는 소셜 미디어 버튼, 위젯, 스크립트 및 아이콘을 차단하는 필터가 포함되어 있습니다. 팝업, 모바일 앱 배너, 쿠키 알림을 차단하는 필터와 같은 다른 방해 요소 필터도 이 섹션에서 찾을 수 있습니다. 이러한 필터를 사용하려면 필터 탭에서 **소셜 위젯**을 찾습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md index 92459285f1f..ef02f7d9a3f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/content-blockers/content-blockers.md @@ -1,17 +1,17 @@ --- -title: What is a content blocker? +title: 콘텐츠 차단기란 무엇인가요? sidebar_position: 1 --- -![Content blockers tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Contentblockers.png) +![콘텐츠 차단기 탭](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-length_review/Contentblockers.png) -콘텐츠 차단기는 주제별 필터 블록입니다. Privacy-related filters are included in the content blocker with the corresponding name — _AdGuard Privacy_. +콘텐츠 차단기는 주제별 필터 블록입니다. 개인정보 보호 관련 필터는 **AdGuard Privacy** 콘텐츠 차단기에 포함되어 있습니다. 콘텐츠 차단기는 필터를 구조화하고 Apple의 제한 사항을 준수하기 위해 설계되었습니다. -[In 2019](https://adguard.com/en/blog/adguard-safari-1-5.html), Apple put limitations on ad blockers for Safari, allowing them to use only 50,000 filtering rules simultaneously. 5만 개의 필터링 규칙으로는 좋은 필터링 품질을 제공할 수 없었습니다. 예를 들어, AdGuard 베이스 필터에만 3만 개의 필터링 규칙이 있습니다. 그래서 Safari용 AdGuard를 각각 최대 5만 개의 규칙을 포함하는 6개의 콘텐츠 차단기로 나누었습니다. +[2019](https://adguard.com/en/blog/adguard-safari-1-5.html)년에 Apple은 Safari용 광고 차단기에 제한을 두어 동시에 50,000개의 필터링 규칙만 사용할 수 있도록 했습니다. 5만 개의 필터링 규칙으로는 좋은 필터링 품질을 제공할 수 없었습니다. 예를 들어, AdGuard 베이스 필터에만 3만 개의 필터링 규칙이 있습니다. 그래서 Safari용 AdGuard를 각각 최대 5만 개의 규칙을 포함하는 6개의 콘텐츠 차단기로 나누었습니다. -[In 2022](https://adguard.com/en/blog/adguard-for-safari-1-11.html), Apple increased the filtering rule limit for each content blocker to 150,000 rules applied simultaneously. Safari용 AdGuard의 경우, 6개의 콘텐츠 차단기 모두에 대해 최대 90만 개의 규칙을 활성화할 수 있습니다. +[2022년](https://adguard.com/ko/blog/adguard-for-safari-1-11.html)에 Apple은 각 콘텐츠 차단기의 필터링 규칙 한도를 동시에 적용되는 규칙 수 150,000개로 늘렸습니다. Safari용 AdGuard의 경우, 6개의 콘텐츠 차단기 모두에 대해 최대 90만 개의 규칙을 활성화할 수 있습니다. 한도는 증가했지만 콘텐츠 차단 기능의 구조는 그대로 유지되었습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md index b5761542463..e3758597594 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/filters.md @@ -3,12 +3,12 @@ title: 필터 sidebar_position: 2 --- -![Filters tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/Filters.png) +![필터 탭](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-length_review/Filters.png) 필터는 특별한 구문으로 작성된 규칙 목록입니다. 콘텐츠 차단기는 이러한 규칙을 사용하여 광고 또는 위험한 사이트에 대한 요청을 차단합니다. -Filters are combined into eight thematic categories: _Ad Blocking, Privacy, Social widgets, Annoyances, Security, Language-specific filters, Custom, and Other filters_. +필터는 **광고 차단, 프라이버시, 소셜 위젯 , 방해 요소, 보안, 특정 언어, 사용자 정의 필터 및 기타 필터**의 8가지 카테고리로 결합됩니다. -Read more about [AdGuard filters](/general/ad-filtering/adguard-filters) or [ad filtering in general](/general/ad-filtering/how-ad-blocking-works). +[AdGuard 필터](/general/ad-filtering/adguard-filters) 또는 [광고 필터링](/general/ad-filtering/how-ad-blocking-works) 전반에 대해 자세히 알아보세요. 필터 탭에서 전체 카테고리 또는 개별 필터를 활성화할 수 있습니다. 필터 탭의 변경 사항은 콘텐츠 차단기 섹션(일반 탭에 있음)에 반영됩니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md index 3366d36f925..1e8ebd42aed 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/general.md @@ -5,14 +5,14 @@ sidebar_position: 1 :::info -Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: -Safari용 AdGuard는 광고 차단 확장 프로그램에 대한 Apple의 제한 사항을 준수하도록 설계되었으며 가장 널리 사용되는 Safari용 광고 차단기입니다. Although it can’t be compared to our desktop ad blocking apps, it's free and can protect you from ads, trackers, phishing, and malicious websites. +Safari용 AdGuard는 광고 차단 확장 프로그램에 대한 Apple의 제한 사항을 준수하도록 설계되었으며 가장 널리 사용되는 Safari용 광고 차단기입니다. AdGuard 데스크톱 앱보다 덜 강력한 기능을 제공하지만 무료이며 광고, 추적기, 피싱 및 악성 사이트로부터 기기를 보호할 수 있습니다. ## 일반 탭 -![General tab](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-depth_review/General.png) +![일반 탭](https://cdn.adtidy.org/public/Adguard/Blog/AG_for_Safari_in-length_review/General.png) -첫 번째 탭은 알림, 업데이트 간격, 시스템 시작 시 AdGuard 실행 등의 설정을 구성할 수 있는 일반 화면입니다. 메뉴 표시줄에 AdGuard 아이콘을 표시하도록 선택할 수도 있습니다. There you can also turn on content blockers to block ads, trackers, annoyances, etc. +첫 번째 탭은 알림, 업데이트 간격, 시스템 시작 시 AdGuard 실행 등의 설정을 구성할 수 있는 일반 화면입니다. 메뉴 표시줄에 AdGuard 아이콘을 표시하도록 선택할 수도 있습니다. 또한 콘텐츠 차단기를 켜서 광고, 추적기, 방해 요소 등을 차단할 수 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md index a6f445bdd03..ed402277762 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/features/rules.md @@ -3,4 +3,4 @@ title: 사용자 규칙 sidebar_position: 4 --- -사용자 규칙을 사용하여 광고 차단을 맞춤 설정할 수 있습니다. 수동으로 추가하거나 가져올 수 있습니다. 페이지에서 항목을 차단하면 사용자 정의 규칙이 자동으로 만들어집니다. To add your own filering rules, use a [special syntax](/general/ad-filtering/create-own-filters). +사용자 규칙을 사용하여 광고 차단을 맞춤 설정할 수 있습니다. 수동으로 추가하거나 가져올 수 있습니다. 페이지에서 항목을 차단하면 사용자 정의 규칙이 자동으로 만들어집니다. 자신만의 파일링 규칙을 추가하려면 [특수 구문](/general/ad-filtering/create-own-filters)을 사용하세요. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md index 39e7cbf0678..8a25d348bd2 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/installation.md @@ -43,12 +43,12 @@ Safari용 AdGuard는 App Store에서 다운로드할 수 있는 무료 앱입니 macOS에서는 *설정* → *웹사이트* → *콘텐츠 차단기*를 클릭합니다. 모든 웹사이트에서 AdGard를 사용하려면 *다른 웹사이트 방문 시*를 *켭니다*. -![Mac Safari Content Blocker Setting](https://i0.imgs.ovh/2023/10/26/Fmc9U.png) +![Mac Safari 콘텐츠 차단기 설정](https://i0.imgs.ovh/2023/10/26/Fmc9U.png) -On iOS, go to *Settings* → *Safari* → *Content Blockers*, and set the option to *Yes*. +iOS에서 *설정* → *Safari* → *콘텐츠 차단기*로 이동하여 옵션을 *네*로 설정합니다. -![iOS Safari Content Blocker Setting](https://i0.imgs.ovh/2023/10/26/FmgM0.jpeg) +![iOS Safari 콘텐츠 차단 설정](https://i0.imgs.ovh/2023/10/26/FmgM0.jpeg) 1~4단계를 완료하면 Safari용 AdGuard가 작동하기 시작합니다. 이제 해당 설정을 구성할 수 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md index bcdaf475011..557ae348966 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/ads-not-blocked.md @@ -1,30 +1,30 @@ --- -title: Filtering doesn’t work and ads aren’t blocked +title: 필터링이 작동하지 않고, 광고가 차단되지 않습니다. sidebar_position: 2 --- :::info -Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: -In some cases, filtering may not work and ads may still be displayed even though AdGuard for Safari and the proper filters are enabled. This usually happens when something goes wrong with filter updates due to Safari bugs. +경우에 따라 Safari용 AdGuard와 적절한 필터가 활성화되어 있어도 필터링이 작동하지 않고 광고가 표시될 수 있습니다. 이는 일반적으로 Safari 버그로 인해 필터 업데이트에 문제가 발생할 때 나타납니다. -### How to fix +### 수정 방법 -1. Open Safari. -2. Click _Safari_ in the left upper corner menu. -3. Click _Settings…_ → _Extensions_. -4. Clear the checkboxes for AdGuard’s extensions: _Custom_, _General_, _Other_, _Privacy_, _Security_, _Social_, _AdGuard for Safari_, and _AdGuard Assistant_. - ![Unchecked content blockers](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) -5. Restart Safari. -6. Return to _Settings..._ → _Extensions_ and re-enable the content-blocking extensions. -7. Open AdGuard for Safari app. -8. Go to _Filters_. -9. Click _Check for updates_. -10. Do not close the AdGuard for Safari window until the filters are updated. +1. Safari를 엽니다. +2. 왼쪽 상단 메뉴에서 **Safari**를 클릭합니다. +3. **설정…** → **확장 프로그램**을 클릭합니다. +4. AdGuard 확장 프로그램(**커스텀**, **일반**, **기타**, **프라이버시**, **보안**, **소셜**, _Safari용 AdGuard_\* 및 **AdGuard 어시스턴트**)의 확인란을 선택 취소하세요. + ![체크하지 않은 콘텐츠 차단](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) +5. Safari를 재시작합니다. +6. **설정...** → **확장 프로그램**으로 돌아가 콘텐츠 차단 확장 프로그램을 다시 사용 설정합니다. +7. Safari용 AdGuard 앱을 엽니다. +8. **필터**로 이동합니다. +9. **업데이트 확인**을 클릭합니다. +10. 필터가 업데이트될 때까지 Safari용 AdGuard 창을 닫지 마세요. -If this doesn’t help and ads are still not being blocked, please contact our support at support@adguard.com. +그래도 도움이 되지 않고 광고가 차단되지 않는다면 지원팀(support@adguard.com)으로 문의하세요. -If you only have problems with a specific page or website, you can report it directly from the browser: click the AdGuard for Safari icon next to the Safari search bar, and then click _Report an issue_. +특정 페이지 또는 웹사이트에만 문제가 있는 경우, 브라우저에서 직접 신고할 수 있습니다. Safari 검색창 옆에 있는 Safari용 AdGuard 아이콘을 클릭한 다음 **문제 신고하기**를 클릭하세요. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md index c048f756ced..e06a0844b6a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/filters-after-disable.md @@ -1,24 +1,24 @@ --- -title: Filtering doesn’t stop when AdGuard for Safari is disabled +title: Safari용 AdGuard가 비활성화되어 있어도 필터링이 중지되지 않습니다. sidebar_position: 3 --- :::info -Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: -If filtering doesn’t stop when AdGuard for Safari is disabled, it may be because content blockers take too long to update. +Safari용 AdGuard를 비활성화해도 필터링이 중지되지 않는다면 콘텐츠 차단기가 업데이트하는 데 너무 오래 걸리기 때문일 수 있습니다. -## How to fix +## 수정 방법 -1. Open Safari. -2. Click _Safari_ in the left upper corner menu. -3. Click _Settings…_ → _Extensions_. -4. Clear the checkboxes for AdGuard’s extensions: _Custom_, _General_, _Other_, _Privacy_, _Security_, _Social_, _AdGuard for Safari_, and _AdGuard Assistant_. - ![Unchecked content blockers](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) -5. Restart Safari. -6. Return to _Settings..._ → _Extensions_ and re-enable the content-blocking extensions. +1. Safari를 엽니다. +2. 왼쪽 상단 메뉴에서 **Safari**를 클릭합니다. +3. **설정…** → **확장 프로그램**을 클릭합니다. +4. AdGuard 확장 프로그램(**커스텀**, **일반**, **기타**, **프라이버시**, **보안**, **소셜**, _Safari용 AdGuard_\* 및 **AdGuard 어시스턴트**)의 확인란을 선택 취소하세요. + ![체크하지 않은 콘텐츠 차단](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-unchecked-cbs.png) +5. Safari를 재시작합니다. +6. **설정...** → **확장 프로그램**으로 돌아가 콘텐츠 차단 확장 프로그램을 다시 사용 설정합니다. -Now everything should work as intended: filtering is on when AdGuard for Safari is enabled, and filtering is off when it is disabled. +이제 모든 것이 의도한 대로 작동합니다. Safari용 AdGuard가 활성화되면 필터링이 켜지고 비활성화되면 필터링이 꺼집니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 06c12b49d35..f3a33fb9f77 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -1,25 +1,29 @@ --- -title: How to collect logs in AdGuard for Safari +title: Safari용 AdGuard에서 로그를 수집하는 방법 sidebar_position: 4 --- :::info -Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: -To analyze and diagnose various problems that may occur with AdGuard for Safari, the AdGuard support service may need its log files. These files contain records of errors and other software events. Below are brief instructions on how to collect logs and send them to support if necessary. +Safari용 AdGuard에서 발생할 수 있는 문제를 분석하고 진단하기 위해 AdGuard 고객지원 서비스에서 로그 파일이 필요할 수 있습니다. 이러한 파일에는 오류 및 기타 소프트웨어 이벤트에 대한 기록이 포함되어 있습니다. 다음은 로그를 수집하여 지원팀에 보내는 방법에 대한 간단한 지침입니다. ### 로그 수집 방법 -1. Open AdGuard for Safari app. -2. Scroll down and click _Export logs_. -3. Choose a location to save the .zip file and click _Save_. +1. Safari용 AdGuard 앱을 엽니다. +2. 아래로 스크롤하여 **로그 내보내기**를 클릭합니다. +3. .zip 파일을 저장할 위치를 선택하고 **저장**을 클릭합니다. -Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. +이제 이 파일을 support@adguard.com으로 보내거나 GitHub의 버그 리포트에 첨부할 수 있습니다. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/private-sonoma.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/private-sonoma.md index aaf1b45a88e..78ba3bb46af 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/private-sonoma.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/private-sonoma.md @@ -1,22 +1,22 @@ --- -title: AdGuard for Safari doesn’t work in private tabs on macOS Sonoma +title: Safari용 AdGuard는 macOS Sonoma의 개인 탭에서 작동하지 않습니다. sidebar_position: 5 --- :::info -Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: -## How to fix +## 수정 방법 -1. Open Safari. -2. Click _Safari_ in the left upper corner menu. -3. Click _Settings…_ → _Extensions_. -4. Check _Allow in Private Browsing_ for all AdGuard extensions. - ![Checked private browsing](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-sonoma-private.png) +1. Safari를 엽니다. +2. 왼쪽 상단 메뉴에서 **Safari**를 클릭합니다. +3. **설정…** → **확장 프로그램**을 클릭합니다. +4. 모든 AdGuard 확장 프로그램에 대해 **비공개 브라우징에서 허용**을 선택합니다. + ![비공개 브라우징 확인](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-sonoma-private.png) -If this doesn’t help and ads are still not being blocked, please contact our support at support@adguard.com. +그래도 도움이 되지 않고 광고가 차단되지 않는다면 지원팀(support@adguard.com)으로 문의하세요. -If you only have problems with a specific page or website, you can report it directly from the browser: click the AdGuard for Safari icon next to the Safari search bar, and then click _Report an issue_. +특정 페이지 또는 웹사이트에만 문제가 있는 경우, 브라우저에서 직접 신고할 수 있습니다. Safari 검색창 옆에 있는 Safari용 AdGuard 아이콘을 클릭한 다음 **문제 신고하기**를 클릭하세요. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/rule-limit.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/rule-limit.md index 1822f7c4f5e..596afb889fa 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/rule-limit.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/rule-limit.md @@ -1,19 +1,19 @@ --- -title: Rule limit issues +title: 규칙 제한 문제 sidebar_position: 1 --- :::info -Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. To protect your entire device, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Safari 브라우저만 보호하는 Safari용 AdGuard에 관한 문서입니다. 전체 기기를 보호하려면 [AdGuard 앱을 다운로드](https://agrd.io/download-kb-adblock)하세요. ::: -## Safari content blocker rule limit +## Safari 콘텐츠 차단 규칙 제한 -AdGuard for Safari uses the Content Blocking API to apply filtering rules to pages in the Safari browser. Currently, a maximum of 150,000 rules are allowed for each content-blocking extension. +Safari용 AdGuard는 콘텐츠 차단 API를 사용하여 Safari 브라우저의 페이지에 필터링 규칙을 적용합니다. 현재 각 콘텐츠 차단 확장 프로그램에는 최대 150,000개의 규칙이 허용됩니다. -AdGuard for Safari has 6 content blockers: +Safari용 AdGuard에는 6가지 콘텐츠 차단기가 있습니다. - AdGuard General - AdGuard Privacy @@ -22,15 +22,15 @@ AdGuard for Safari has 6 content blockers: - AdGuard Other - AdGuard Custom -This makes a total of 900,000 filtering rules. +이로써 총 900,000개의 필터링 규칙이 만들어집니다. -However, **an extension can contain up to 150,000 rules**. If you exceed this limit, some of the rules will not be applied. This may lead to incorrect blocking. +그러나 **확장 프로그램에는 최대 150,000개의 규칙을 포함할 수 있습니다**. 이 한도를 초과하면 일부 규칙이 적용되지 않습니다. 이로 인해 잘못된 차단이 발생할 수 있습니다. -## How to check if you are exceeding the rule limit +## 규칙 한도를 초과하고 있는지 확인하는 방법 -1. Open AdGuard for Safari app. -2. Scroll down and click _Content blockers_. -3. Below each content blocker, you can see the enabled filters and the number of active rules. - ![Content blockers](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-cb.png) +1. Safari용 AdGuard 앱을 엽니다. +2. 아래로 스크롤하여 **콘텐츠 차단기**를 클릭합니다. +3. 각 콘텐츠 차단기 아래에서 활성화된 필터와 활성 규칙 수를 확인할 수 있습니다. + ![콘텐츠 차단기](https://cdn.adtidy.org/content/Kb/ad_blocker/safari/adg-safari-cb.png) -If more than 150,000 rules are enabled in a content blocker, you may need to disable some filters or user rules from it. Go to _Filters_, select the problematic category, and disable the filters or user rules you don’t need. +콘텐츠 차단기에서 150,000개 이상의 규칙이 활성화되어 있는 경우, 일부 필터 또는 사용자 규칙을 비활성화해야 할 수 있습니다. **필터**로 이동하여 문제가 있는 카테고리를 선택한 다음 필요하지 않은 필터나 사용자 규칙을 비활성화하세요. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 082c799f5a5..38f09f2fd7a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 2285bf5343a..38389f3eb93 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ sidebar_position: 3 ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. 이 파일에는 소프트웨어에서 발생한 모든 오류에 대한 기록이 있습니다. AdGuard 로그를 수집하여 지원 팀에 보내는 방법을 살펴보겠습니다. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index c839ccd4055..2a5f7534168 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ sidebar_position: 8 ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index ac43411b028..cea063cc776 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ sidebar_position: 4 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + AdGuard 설치 중 문제가 발생하면 지원 팀에서 AdGuard 설치 로그를 수집하여 보내달라고 요청할 수 있습니다. AdGuard 설치 로그 수집 및 전송 방법은 다음과 같습니다. 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index effeef18994..66261b626ed 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ sidebar_position: 5 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. 이 파일에는 소프트웨어에서 발생한 모든 오류에 대한 기록이 있습니다. Windows 로그를 수집하여 지원 팀에 보내는 방법을 살펴보겠습니다. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - 저장할 위치를 선택하고 이름을 입력한 후 *저장*을 클릭합니다. 그다음에는 *언어 설정에 대한 정보 표시*를 선택합니다. *한국어* 옆의 확인란을 선택하고 *확인*을 클릭합니다. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 733bca9a430..8bae7dedd95 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [iOS용 AdGuard][ios-app] | [Safari용 AdGuard][ext-saf] | [AdGuard 콘텐츠 차단기][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:-----------------------:|:--------------------------:|:-------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [iOS용 AdGuard][ios-app] | [Safari용 AdGuard][ext-saf] | [AdGuard 콘텐츠 차단기][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:-----------------------:|:--------------------------:|:-------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: 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 c013f348fc2..a62d04ff815 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 @@ -3,74 +3,74 @@ title: 피싱 및 멀웨어 보호 sidebar_position: 3 --- -Falling prey to phishing and malware remains a common issue. To enhance digital security, we’ve incorporated special filters in AdGuard products to shield you from malicious and phishing websites. To date, we’ve categorized over 15 million sites and built a database of 1.5 million websites known for phishing and malware. Using this database, AdGuard checks the websites you visit to protect you from online threats. +피싱과 멀웨어는 여전히 흔한 문제입니다. 디지털 보안을 강화하기 위해 AdGuard 제품에 특수 필터를 통합하여 악성 및 피싱 웹사이트로부터 사용자를 보호합니다. 현재까지 1,500만 개 이상의 사이트를 분류하고 피싱 및 멀웨어로 알려진 150만 개 웹사이트의 데이터베이스를 구축했습니다. AdGuard는 이 데이터베이스를 사용하여 사용자가 방문하는 웹사이트를 확인하여 온라인 위협으로부터 사용자를 보호합니다. ::: note -We strictly do not collect or use any information about the websites you visit. +당사는 사용자가 방문하는 웹사이트에 대한 정보를 엄격하게 수집하거나 사용하지 않습니다. ::: -## How does AdGuard check websites?​ +## AdGuard는 웹사이트를 어떻게 검사하나요? -Each time you visit a website, your local client exchanges information with our backend server in the form of hashes and hash prefixes. Based on this exchange, the local client determines whether or not the website is listed in the potentially dangerous websites database. There is a difference in the scope of this check for apps and extensions. +사용자가 웹사이트를 방문할 때마다 로컬 클라이언트는 해시 및 해시 접두사 형태로 AdGuard 백엔드 서버와 정보를 교환합니다. 이 교환을 기반으로 로컬 클라이언트는 잠재적으로 위험한 웹사이트 데이터베이스에 해당 웹사이트가 등재되어 있는지 여부를 결정합니다. 하지만 앱과 확장 프로그램은 조금 다르게 검사됩니다. -### In apps +### 앱 -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과 도메인 이름을 확인하므로, 당사 서버는 사용자가 방문한 웹사이트에 대한 정보를 보유하지 않으며 사용자의 개인 정보는 완전히 안전합니다. AdGuard 서버는 해시 접두사와 일치하는 모든 가능한 주소 목록으로 앱의 쿼리에 응답합니다. 해시 일치를 기반으로 잠재적 위협이 감지되면 해당 웹사이트에 대한 액세스가 즉시 차단됩니다. -![DNS warning](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png) +![DNS 경고](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_diana.png) -### In browser extensions +### 확장 프로그램 -Our browser extensions can only check domain names, not full URLs. 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의 경우**: *설정에서* *보안* 모듈을 활성화합니다. -![Security in 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. Additionally, enable *DNS protection* and select one of the AdGuard DNS servers +- **iOS의 경우**: 별도의 모듈은 없지만 *Safari 보호* → *필터* → *안전* 을 클릭하고 사용 가능한 필터를 활성화합니다. 또한 *DNS 보호*를 활성화하고 AdGuard DNS 서버 중 하나를 선택합니다. -![Security in 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) -- **For Browser extensions**: Enable *Phishing and malware protection* in the *Settings* tab. For enhanced protection, go to *Filters* → *Security* and activate available filters +- **브라우저 확장 프로그램의 경우**: *설정* 탭에서 *피싱 및 멀웨어 보호를* 사용 설정합니다. 보호 기능을 강화하려면 *필터* → *보안*으로 이동하여 사용 가능한 필터를 활성화하세요. ![피싱 및 멀웨어 보호](https://cdn.adtidy.org/content/kb/ad_blocker/general/extension_protection.png) -- **For Private AdGuard DNS:** Enable malware protection in *Server settings* under *Security* +- **비공개 AdGuard DNS의 경우:** *보안* 아래의 *서버 설정*에서 멀웨어 보호를 사용 설정합니다. -![Security in DNS](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) +![DNS의 보안](https://cdn.adtidy.org/content/kb/ad_blocker/general/bs_dns.png) -## What we block +## 차단 대상 -We maintain two primary filters: one that protects against phishing and fraudulent websites that attempt to steal user credentials, and another that blocks access to websites known to distribute malware, which could lead to data loss, information leaks, or damage to your device. These filters also protect you from websites with various scams and fraudulent schemes. For more detailed information, refer to this [Wikipedia article](https://en.wikipedia.org/wiki/Phishing). +사용자 인증 정보를 도용하려는 피싱 및 사기성 웹사이트로부터 보호하는 필터와 데이터 손실, 정보 유출 또는 기기 손상으로 이어질 수 있는 멀웨어를 배포하는 것으로 알려진 웹사이트에 대한 액세스를 차단하는 두 가지 기본 필터를 유지 관리합니다. 이 필터는 다양한 사기 및 사기 수법이 포함된 웹사이트로부터 사용자를 보호합니다. 자세한 내용은 이 [위키백과 문서](https://en.wikipedia.org/wiki/Phishing)를 참조하세요. -## Maintaining our filters +## 필터 유지 관리 -AdGuard maintains an extensive database of phishing and malware websites, and it’s updated regularly and automatically as new threats are discovered. We collect information from a variety of reliable, high-quality sources, both public and from other companies, and aggregate it into a common database of dangerous sites. +AdGuard는 피싱 및 멀웨어 웹사이트에 대한 광범위한 데이터베이스를 유지 관리하며 새로운 위협이 발견되면 정기적으로 자동으로 업데이트됩니다. AdGuard는 신뢰할 수 있는 고품질의 다양한 출처(공개 및 타사)로부터 정보를 수집하여 위험 사이트에 대한 공통 데이터베이스로 통합합니다. -We automatically analyze complaints about suspicious sites and spend a great deal of time keeping the database up-to-date, cleaning up false positives, and implementing mechanisms to prevent them in the future. +의심스러운 사이트에 대한 불만을 자동으로 분석하고 데이터베이스를 최신 상태로 유지하며 오탐을 정리하고 향후 이를 방지하기 위한 메커니즘을 구현하는 데 많은 시간을 할애합니다. -### Want to help?​ +### 돕고 싶으신가요? -Any help is welcome! If you encounter a phishing or malware website, please report it to . +피싱 또는 멀웨어 웹사이트를 발견하면 으로 신고해 주세요. -### False-positive responses​ +### 오탐 응답 -Occasionally, some non-malicious websites are added to AdGuard’s filters. We do our best to reduce the percentage of false positives, but they still occur. If you encounter this behavior from AdGuard, please report the false positive to our technical support at . +때때로 일부 비악성 웹사이트가 AdGuard의 필터에 추가되는 경우가 있습니다. 오탐 비율을 줄이기 위해 최선을 다하고 있지만 여전히 오탐이 발생하고 있습니다. AdGuard에서 이러한 동작이 발생하면 지원팀( )으로 오탐을 신고해 주세요. -## If you are suspicious about a website +## 웹사이트가 의심스러운 경우 -If you suspect that a certain website might be dangerous, check it first by using our [security check tool](https://reports.adguard.com/welcome.html). +특정 웹사이트가 위험하다고 생각되면 먼저 [보안 확인 도구](https://reports.adguard.com/welcome.html)를 사용해 보세요. -![Security check](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) +![보안 확인](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/no/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/pl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md index df51613cfb4..fae5c46c500 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md @@ -15,7 +15,7 @@ If you decide to install both the extension and the standalone program on your P If you have the desktop version of AdGuard installed on your PC, it is better to use AdGuard Browser Assistant instead of the extension. -## AdGuard Browser Assistant +## Assistente de navegador AdGuard ![AdGuard Browser Assistant \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/browser_extension/ad_blocker_browser_extension_assistant.png) diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index 3d135b961d3..748e7dd860f 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Enviando logs -> O AdGuard tem o compromisso de proteger sua privacidade. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Antes de enviar seus registros para a equipe de suporte, revise o arquivo, pois ele pode conter informações adicionais que você não deseja compartilhar. Se contiver tais informações pessoais, recomendamos que você as exclua primeiro. +:::note -Agora que você coletou os logs, siga estas etapas para enviá-los à nossa equipe de desenvolvimento: +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. -1. Relate o bug no [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Envie o arquivo com os registros e o tempo de reprodução para `devteam@adguard.com` e anexe um link para seu issue no GitHub. Você também pode fazer upload do arquivo para o Google Drive e adicionar o link a ele em vez de anexar o arquivo. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/extending-restricted-settings.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/extending-restricted-settings.md index d98274a0489..ace05b6cf96 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/extending-restricted-settings.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/extending-restricted-settings.md @@ -5,7 +5,7 @@ sidebar_position: 18 :::info -This article is about AdGuard for Android, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +This article is about AdGuard for Android, a multifunctional ad blocker that protects your device at the system level. Para ver como funciona, [baixe o aplicativo AdGuard](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index ee642bf52a2..979912e211d 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index e404b6075f0..22361cd0812 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Neste artigo, vamos guiá-lo pelo processo de coleta de logs de depuração, uma etapa de solução de problemas essencial para solucionar problemas complexos que podem surgir. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> O AdGuard tem o compromisso de proteger sua privacidade. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Antes de enviar seus registros para a equipe de suporte, revise o arquivo, pois ele pode conter informações adicionais que você não deseja compartilhar. Se contiver tais informações pessoais, recomendamos que você as exclua primeiro. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 907ea6cc481..567e511e967 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md index c6cf7848175..ecf051f1ac4 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-mac/solving-problems/screen-time-issues.md @@ -5,7 +5,7 @@ sidebar_position: 11 :::info -This article is about AdGuard for Mac, a multifunctional ad blocker that protects your device at the system level. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +This article is about AdGuard for Mac, a multifunctional ad blocker that protects your device at the system level. Para ver como funciona, [baixe o aplicativo AdGuard](https://agrd.io/download-kb-adblock) ::: diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 1e3024b4ddb..e167ea70c6d 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ Para analisar e diagnosticar vários problemas que podem ocorrer com o AdGuard p Agora você pode enviar este arquivo para support@adguard.com ou anexá-lo ao seu relatório de bug no GitHub. -> O AdGuard tem o compromisso de proteger sua privacidade. Seguimos rigorosamente nossa [Política de Privacidade](https://adguard.com/privacy/safari.html) e não coletamos nenhuma informação privada sobre os usuários. Antes de enviar seus registros para a equipe de suporte, revise o arquivo, pois ele pode conter informações adicionais que você não deseja compartilhar. Se contiver tais informações pessoais, recomendamos que você as exclua primeiro. +:::note -1. Abra o [repositório GitHub do AdGuard for Safari](https://github.com/AdguardTeam/AdGuardForSafari/issues) e clique em _Novo problema_. -2. Envie o arquivo de registro para devteam@adguard.com. Inclua a hora do bug e anexe um link para o seu problema ou seu número (aparece como #number próximo ao título). - Alternativamente, você pode fazer upload do arquivo de registro para o Google Drive e enviá-lo para devteam@adguard.com. Adicione o link do arquivo ao seu problema do GitHub. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). + Alternatively, you can upload the log file to Google Drive and send it to devteam@adguard.com. Add the file link to your GitHub issue. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md index 9f1a271094c..df3ad6efc63 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/extensions.md @@ -5,61 +5,61 @@ sidebar_position: 3 :::info -Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. Para ver como funciona, [baixe o aplicativo AdGuard](https://agrd.io/download-kb-adblock) ::: -AdGuard can significantly broaden website functionality working as a [user script manager](/general/userscripts). AdGuard Users can add their own scripts, as well as manage existing ones. +O AdGuard pode ampliar significativamente a funcionalidade de um site funcionando como um [gerenciador de scripts de usuário](/general/userscripts). Os usuários do AdGuard podem adicionar seus próprios scripts, bem como gerenciar os existentes. -![Extensions \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/userscripts.png) +![Extensões \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/userscripts.png) -**Automatically detect userscripts** +**Detectar automaticamente scripts de usuário** -With this option enabled, AdGuard will automatically define browser queries to userscripts and suggest their installation. Otherwise, extensions can be downloaded and installed manually. +Com esta opção habilitada, o AdGuard definirá automaticamente as consultas do navegador aos scripts do usuário e sugerirá sua instalação. Caso contrário, as extensões poderão ser baixadas e instaladas manualmente. -The following extensions are installed with AdGuard: +As seguintes extensões são instaladas com o AdGuard: -![Preinstalled userscripts \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/preinstalled-userscripts.png) +![Userscripts pré-instalados \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/preinstalled-userscripts.png) -**AdGuard Assistant** +**Assistente AdGuard** -AdGuard Assistant is Legacy Assistant that you may use if the [new Assistant](/adguard-for-windows/browser-assistant.md) is not available for your browser. The name of this extension is quite deliberate: it actually assists the user in changing basic AdGuard settings right in the browser, without the need to open the app itself. AdGuard Assistant works with all Microsoft Windows compatible browsers. In addition, the AdGuard Assistant icon will not be displayed on websites listed as exceptions by the user and on certain web pages where there is a risk of incorrect content display. +O Assistente AdGuard é um assistente antigo que você pode usar se o [novo assistente](/adguard-for-windows/browser-assistant.md) não estiver disponível para o seu navegador. O nome desta extensão não é coincidência: na verdade, ela auxilia o usuário a alterar as configurações básicas do AdGuard diretamente no navegador, sem a necessidade de abrir o próprio aplicativo. O Assistente AdGuard funciona com todos os navegadores compatíveis com Microsoft Windows. Além disso, o ícone do Assistente do AdGuard não será exibido em sites listados como exceções pelo usuário e em determinadas páginas da Web em que há risco de exibição de conteúdo incorreto. **AdGuard Extra** -This is a custom extension designed to fight the technique of re-inserting blocked ads — the so-called ad blocker circumvention/ad reinjection. Both are advanced anti-ad blocker methods that continue to rise in popularity among advertisers. +Esta é uma extensão personalizada projetada para combater a técnica de reinserção de anúncios bloqueados, conhecida com evasão/reinjeção de anúncios do bloqueador de anúncios. Ambos são métodos avançados de bloqueio de anúncios que continuam a crescer em popularidade entre os anunciantes. -AdGuard Extra is essentially a mini-program that changes the way pages work in such a way that it becomes much more difficult for sites to use the above-mentioned methods to bypass blockers. +O AdGuard Extra é basicamente um miniprograma que altera a forma como as páginas funcionam, de modo que se torna muito mais difícil para os sites usarem os métodos mencionados acima para contornar os bloqueadores. -**AdGuard Popup Blocker** +**Bloqueador de pop-ups do AdGuard** -This extension prevents popup windows from opening when you view web pages. Some pop-ups are considered useful — they may contain settings for site administering or additional reference information demonstrated upon clicking a link. That is why you can turn off the Blocker if needed. This extension doesn’t work on websites added to the AdGuard exceptions list either. It is turned off by default, but you can turn it on in the application settings. You will find more detailed information about this extension in our Knowledge base. +Esta extensão evita que janelas popup sejam abertas quando você visualiza páginas da web. Algumas popups são consideradas úteis: elas podem conter configurações para administração do site ou informações de referência adicionais demonstradas ao clicar em um link. É por isso que você pode desligar o bloqueador, se necessário. Esta extensão também não funciona em sites adicionados à lista de exceções do AdGuard. Ele está desativado por padrão, mas você pode ativá-lo nas configurações do aplicativo. Você encontrará informações mais detalhadas sobre esta extensão em nossa base de conhecimento. **Web of Trust** -Web of Trust lets you see the reputation of each website based on its users’ opinions. The site is rated by a number of specific criteria: trust, security, etc. This extension is turned off by default, but you can turn it on in the application settings. Please, note that AdGuard is not the developer of this extension. +O Web of Trust permite que você veja a reputação de cada site com base nas opiniões de seus usuários. O site é avaliado por uma série de critérios específicos: confiança, segurança, etc. Esta extensão está desativada por padrão, mas você pode ativá-la nas configurações do aplicativo. Observe que AdGuard não é o desenvolvedor desta extensão. -### Network +### Rede -The penultimate 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 protocol_. These are important extra precautions to better filter your web space. Most websites are now using HTTPS, and the same applies to advertising. From many sites, like youtube.com, facebook.com and twitter.com, it is impossible to remove ads without HTTPS filtering. So keep the _Filter HTTPS protocol_ feature enabled unless you have a strong reason not to. +O penúltimo módulo é dedicado à filtragem de rede e aqui você encontrará opções adicionais relacionadas à rede. Dois deles estão habilitados por padrão: _Habilitar filtragem de tráfego_ e _Filtrar protocolo HTTPS_. Estas são precauções extras importantes para filtrar melhor o seu espaço web. A maioria dos sites agora usa HTTPS, e o mesmo se aplica à publicidade. Em muitos sites, como youtube.com, facebook.com e twitter.com, é impossível remover anúncios sem filtragem HTTPS. Portanto, mantenha o recurso _Filtrar protocolo HTTPS_ ativado, a menos que você tenha um forte motivo para não fazê-lo. -![Network Settings \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/network-settings.png) +![Configurações de rede \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/network-settings.png) -In this module you can check 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. +Neste módulo você pode marcar a caixa de seleção "Usar AdGuard como proxy HTTP" para usar o AdGuard como um proxy HTTP regular que filtrará todo o tráfego que passa por ele. Você também pode ativar o recurso _Filtrar sites com certificados EV_. Os certificados SSL de validação estendida (EV) oferecem uma garantia de segurança mais forte; os proprietários de tais sites devem passar por um processo de verificação de identidade completo e padronizado globalmente, definido pelas diretrizes de VE. É por isso que alguns usuários confiam em sites com esses certificados e preferem não filtrá-los. -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. +Por fim, há uma seção com configurações de proxy. Lá você pode especificar qual servidor proxy o AdGuard deve usar para atualizar filtros, obter novas versões e assim por diante. ### 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. +A última seção é dedicada ao AdGuard VPN, uma ferramenta ideal que oferece segurança e anonimato sempre que você navega na Internet. Você pode baixá-lo clicando no botão _Download_ ou acessar o site do AdGuard VPN clicando no botão _Homepage_. -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 confidentiality 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. +Como funciona o AdGuard VPN? Sem entrar em detalhes técnicos, podemos dizer que a VPN cria um túnel criptografado seguro entre o computador ou dispositivo móvel do usuário e um servidor VPN remoto. Desta forma, a confidencialidade dos dados é preservada, bem como o anonimato do usuário, porque um observador terceiro vê o endereço IP do servidor VPN e não o IP real do usuário. -**What AdGuard VPN does:** +**O que o AdGuard VPN faz:** -- 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) +- esconde sua localização real e ajuda você a permanecer anônimo +- altera seu endereço IP para proteger seus dados contra rastreamento +- criptografa seu tráfego para torná-lo ilegível para terceiros +- permite que você configure onde usar e onde não usar a VPN (recurso de exclusões) -To get more information about AdGuard VPN dive into the [AdGuard VPN Knowledge Base](https://adguard-vpn.com/kb/). +Para obter mais informações sobre o AdGuard VPN, acesse a [base de conhecimento do AdGuard VPN](https://adguard-vpn.com/kb/). diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md index f44ea94a86e..b6a47b3deba 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/home-screen.md @@ -1,16 +1,16 @@ --- -title: Home screen +title: Tela inicial sidebar_position: 1 --- :::info -Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. Para ver como funciona, [baixe o aplicativo AdGuard](https://agrd.io/download-kb-adblock) ::: -AdGuard for Windows is an easy-to-use tool that blocks annoying banners, popups, video ads, and trackers. But that's not all: it helps you save traffic, load web pages faster, and protect your computer from undesirable and potentially malicious websites. AdGuard also protects you from phishing websites and keeps your kids away from inappropriate content. +AdGuard para Windows é uma ferramenta fácil de usar que bloqueia banners, pop-ups, anúncios em vídeo e rastreadores irritantes. Mas isso não é tudo: ajuda a economizar tráfego, carregar páginas da web com mais rapidez e proteger seu computador contra sites indesejáveis e potencialmente maliciosos. O AdGuard também protege você contra sites de phishing e mantém seus filhos longe de conteúdo impróprio. -![Main screen \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/home-screen.png) +![Tela principal \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/home-screen.png) -Once you start AdGuard for Windows, you will see the main screen of the app. Its most noticeable detail is the _enable/disable protection_ button. Also, on this screen you can monitor blocked ads, trackers and threats statistics, find out the current version of the app or update it. Furthermore, there are four tabs in the upper right corner: _Settings_, _Support_, _License_, and _About_. Each of these is worth talking about separately. +Depois de iniciar o AdGuard para Windows, você verá a tela principal do aplicativo. Seu detalhe mais notável é o botão _ativar/desativar proteção_. Além disso, nesta tela você pode monitorar anúncios bloqueados, rastreadores e estatísticas de ameaças, descobrir a versão atual do aplicativo ou atualizá-lo. Além disso, existem quatro guias no canto superior direito: _Configurações_, _Suporte_, _Licença_ e _Sobre_. Vale a pena falar sobre cada um deles separadamente. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/others.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/others.md index 634f375f7bb..390aaa01d83 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/others.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/features/others.md @@ -1,54 +1,54 @@ --- -title: Other features +title: Outros recursos sidebar_position: 4 --- :::info -Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. Para ver como funciona, [baixe o aplicativo AdGuard](https://agrd.io/download-kb-adblock) ::: -There are other useful AdGuard options that shouldn't go unnoticed in this article, since they add much to user experience. +Existem outras opções úteis do AdGuard que não devem passar despercebidas neste artigo, pois agregam muito à experiência do usuário. ### Suporte -![Support \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/support.png) +![Suporte \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/support.png) -By clicking the Support tab you will open a dialog box through which you can report a bug, submit a feature request, or simply share your opinion of the product. +Ao clicar na guia Suporte você abrirá uma caixa de diálogo através da qual poderá relatar um bug, enviar uma solicitação de recurso ou simplesmente compartilhar sua opinião sobre o produto. ### Licença -![License \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/license.png) +![Licença \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/license.png) -This tab contains information about your license. Here you can: +Esta guia contém informações sobre sua licença. Aqui você pode: -- find out the license type (nightly build, beta or release), the number of devices available for simultaneous connection to AdGuard, the license expiration date; -- click the button to go to the license purchase page, and activate, reset or recover a license. +- descobrir o tipo de licença (nightly, beta ou release), a quantidade de dispositivos disponíveis para conexão simultânea do AdGuard, a data de validade da licença; +- clicar no botão para ir para a página de compra de licença e ativar, redefinir ou recuperar uma licença. ### Sobre -![About \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/about.png) +![Sobre \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/about.png) -In addition to information about the current version of the program, this tab provides some useful links to Licese agreement, Privacy policy, Acknowledgements, Discussions, and Version history pages. +Além de informações sobre a versão atual do programa, esta guia fornece alguns links úteis para as páginas Contrato de licença, Política de privacidade, Agradecimentos, Discussões e Histórico de versões. -### Check for updates +### Verificar atualizações -![Check for updates \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/check-updates.png) +![Verifique se há atualizações \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/check-updates.png) -To check for filters and userscripts updates, click the rotating arrows icon in the upper right corner of the app's main screen. +Para verificar atualizações de filtros e scripts de usuário, clique no ícone de setas giratórias no canto superior direito da tela principal do aplicativo. -### Tray menu +### Menu da bandeja -To save you time navigating around AdGuard menus, many of the frequently used options and settings are available from the tray menu. To call the menu, right-click the AdGuard icon in the tray. It will offer you the following options: +Para economizar tempo navegando pelos menus do AdGuard, muitas das opções e configurações usadas com frequência estão disponíveis no menu da bandeja. Para acessar o menu, clique com o botão direito no ícone do AdGuard na bandeja. Ele oferecerá as seguintes opções: -- enable protection -- disable protection: completely or for 30 seconds -- go to _Settings_ -- open the _Tools_ and _Advanced_ menus -- check for filter updates -- check for app updates -- to recall the last pop-up message -- reach the _Support_ and _About_ sections -- close AdGuard, but continue filtering -- exit AdGuard +- ativar proteção +- desativar proteção: completamente ou por 30 segundos +- ir para _Configurações_ +- abrir os menus _Ferramentas_ e _Avançado_ +- verificar atualizações de filtros +- verificar se há atualizações para o aplicativo +- recuperar a última mensagem popup +- acesse as seções _Suporte_ e _Sobre_ +- fechar AdGuard, mas continuar filtrando +- sair do AdGuard 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 efef04b7e9e..507614c80e7 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 @@ -1,90 +1,91 @@ --- -title: Settings +title: Configurações sidebar_position: 2 --- :::info -Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. To see how it works, [download the AdGuard app](https://agrd.io/download-kb-adblock) +Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifuncional que protege seu dispositivo a nível de sistema. Para ver como funciona, [baixe o aplicativo AdGuard](https://agrd.io/download-kb-adblock) ::: -_Settings_ is the section that requires the most attention. This is where you can configure the app so that it fully meets your requirements: blocks only what bothers you, uses the DNS server of the trusted provider, removes third-party cookies, and so on. +_Configurações_ é a seção que requer mais atenção. É aqui que você pode configurar o aplicativo para que atenda plenamente às suas necessidades: bloqueia apenas o que incomoda, usa o servidor DNS do provedor confiável, remove cookies de terceiros e assim por diante. -![Settings \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings.png) +![Configurações \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings.png) -### General settings +### Configurações gerais -Here you can set the language and theme (Dark or Light), enable AdGuard launching at system start-up and silent automatic updates, choose the update channel and filter update check interval. Also Settings is the place to go if AdGuard for Windows is not working properly and the support team asked you to [collect _Debug logs_](/adguard-for-windows/solving-problems/adguard-logs.md). +Aqui você pode definir o idioma e o tema (escuro ou claro), ativar o lançamento do AdGuard na inicialização do sistema e atualizações automáticas silenciosas, escolher o canal de atualização e filtrar o intervalo de verificação de atualização. Além disso, você pode recorrer às Configurações se o AdGuard para Windows não estiver funcionando corretamente e a equipe de suporte solicitar que você [colete _logs de depuração_](/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) +![Configurações avançadas \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/advanced-settings.png) -At the very bottom of the screen you will find _Advanced Settings_. Changing some of them mindlessly may potentially cause problems with AdGuard's performance, break the Internet connection or compromise your security and privacy. That's why we suggest you open this section only if you are sure of what you are doing or our support team has asked you about it. If you want to know what can be set up in _Advanced Setting_ read the [dedicated article](/adguard-for-windows/solving-problems/low-level-settings.md). +Na parte inferior da tela, você encontrará as _Configurações avançadas_. Se você não sabe ao certo o que está fazendo, a alterações dessas configurações pode causar problemas no desempenho do AdGuard, interromper a conexão com a Internet ou comprometer sua segurança e privacidade. É por isso que sugerimos que você abra esta seção somente se tiver certeza do que está fazendo ou se nossa equipe de suporte pedir. Se você quiser saber o que pode ser configurado em _Configurações avançadas_, leia o [nosso artigo](/adguard-for-windows/solving-problems/low-level-settings.md). -### Ad Blocker +### Bloqueador de anúncios -This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). +Este é o módulo principal do AdGuard para Windows que remove anúncios dos sites que você visita e dos aplicativos instalados no seu dispositivo. Para filtrar publicidade e conteúdo que ameaça a privacidade como banners, pop-ups ou rastreadores, o AdGuard usa filtros diferentes: grupos de regras com finalidade semelhante escritas com uma [sintaxe especial](/general/ad-filtering/create-own- filtros). Para entender o que são filtros e como funcionam, leia [este artigo](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Bloqueador de anúncios \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) -In the Ad Blocker module you can: +No módulo Bloqueador de anuncios, você pode: -- enable automatic activation of language-specific filters, -- disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, -- activate pre-installed filters such as _AdGuard Base filter_, -- install filters from the list or add a custom filter by clicking the _Add a filter_ button, -- make changes to existing rule groups using the _Filter editor_ button, -- see all the requests sent by browsers and apps installed on your computer by clicking the _Filtering log_ button. From there you can also block or unblock any request by creating a custom rule, -- compose a filter from your own rules written manually, imported or created with the AdGuard Assistant extension. +- permitir a ativação automática de filtros específicos de idioma, +- desativar o bloqueio de [anúncios de pesquisa e autopromoção](/general/ad-filtering/search-ads), +- desativar anúncios no menu Iniciar do Windows 11, +- ativar filtros pré-instalados, como o _Filtro AdGuard Base_, +- instalar filtros da lista ou adicione um filtro personalizado clicando no botão _Adicionar um filtro_, +- faça alterações em grupos de regras existentes usando o botão _Editor de filtros_, +- ver todas as solicitações enviadas pelos navegadores e aplicativos instalados em seu computador clicando no botão _Log de filtragem_. A partir daí você também pode bloquear ou desbloquear qualquer solicitação criando uma regra personalizada, +- compor um filtro a partir de suas próprias regras escritas manualmente, importadas ou criadas com a extensão Assistente AdGuard. -Before you start manually writing your own rules read our detailed [syntax guide](/general/ad-filtering/create-own-filters). +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 -Many websites gather information about their visitors, such as their IP addresses, information about the browser and operating system installed, screen resolution, and even what page the user came or was redirected from. Some web pages use cookies to mark the browser and save your personal settings, user preferences, or "recognize" you upon your next visit. Stealth Mode safeguards your personal information from such data and statistics gathering systems. +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. -![Stealth Mode \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/stealth-mode.png) +![Modo sigiloso \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/stealth-mode.png) -You can flexibly adjust the work of Stealth Mode: for instance, you can prohibit the website to receive the search request you used to find it on the Internet, automatically delete both third-party and website’s own cookies, and disable location sharing in your browser that can be used to track your whereabouts. +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 e desativar o compartilhamento de localização no seu navegador, que pode ser usado para rastrear sua localização real. -To learn everything about Stealth Mode and its many options, [read this article](/general/stealth-mode). +Para saber tudo sobre o Modo Sigiloso e suas diversas opções, [leia este artigo](/general/stealth-mode). ### Segurança da navegação -Browsing security gives strong protection against malicious and phishing websites. No, AdGuard for Windows is not an antivirus. It will neither stop the download of a virus when it's already started, nor delete the already existing ones. But it will warn you if you're about to proceed to a website whose domain has been added to our "untrusted sites" database, or to download a file from such website. You can find more information about how this module works in the [dedicated article](/general/browsing-security). +A segurança da navegação oferece forte proteção contra sites maliciosos e de phishing. Não, o AdGuard para Windows não é um antivírus. Ele não interromperá o download de um vírus quando ele já estiver iniciado, nem excluirá os já existentes. Mas ele te avisará se você estiver prestes a acessar um site cujo domínio tenha sido adicionado ao nosso banco de dados de "sites não confiáveis" ou a fazer download de um arquivo desse site. Você pode encontrar mais informações sobre como este módulo funciona no [nosso artigo](/general/browsing-security). -In this module you can +Neste módulo você pode -- enable notifications to block requests to malicious and phishing sites, -- activate sound notifications, -- agree to submit anonymous security-related info to the AdGuard server to help us keep the malicious and phishing websites database up to date. +- ativar notificações para bloquear solicitações a sites maliciosos e de phishing, +- ativar notificações sonoras, +- concorda em enviar informações anônimas relacionadas à segurança ao servidor AdGuard para nos ajudar a manter o banco de dados de sites maliciosos e de phishing atualizado. -![Browsing security \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/browsing-security.png) +![Segurança de navegação \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/browsing-security.png) -In case you want to learn more about Browsing security, read [this article](/general/browsing-security). +Caso você queira saber mais sobre segurança de navegação, leia [nosso artigo](/general/browsing-security). -### DNS Protection +### Proteção DNS -There are three significant reasons why you might want to explore the DNS protection settings. First, to avoid being tracked by your ISP. Every time you open a website, for example `google.com`, your browser sends a request to a DNS server to get the IP address of the website in return. Usually, the DNS server belongs to your ISP, which allows them to track your online activity. Second, to encrypt you DNS traffic. And the third one is to [block content on DNS level](https://adguard-dns.io/kb/general/dns-filtering/). +Existem três razões importantes pelas quais você pode querer explorar as configurações de proteção DNS. Primeiro, para evitar ser rastreado pelo seu ISP. Cada vez que você abre um site, por exemplo `google.com`, seu navegador envia uma solicitação a um servidor DNS para obter em troca o endereço IP do site. Normalmente, o servidor DNS pertence ao seu ISP, o que permite rastrear sua atividade online. Em segundo lugar, para criptografar seu tráfego DNS. E a terceira é [bloquear conteúdo no nível de 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) +![Proteção DNS \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/dns-settings.png) -In the DNS protection module of AdGuard for Windows you can select the DNS servers from known DNS providers, including [AdGuard DNS](https://adguard-dns.io/kb/) that blocks ads and trackers, AdGuard DNS Family Protection that in addition blocks adult content, or AdGuard DNS Non-filtering that provides a secure and reliable connection, but doesn't filter anything. You can even add custom DNS servers. Also there is an option to add custom rules using [DNS rule syntax](https://adguard-dns.io/kb/general/dns-filtering-syntax/). And if necessary, you can add [DNS filters of your choice](https://filterlists.com). +No módulo de proteção DNS do AdGuard para Windows, você pode selecionar os servidores DNS de provedores conhecidos, incluindo o [AdGuard DNS](https://adguard-dns.io/kb/) que bloqueia anúncios e rastreadores, AdGuard DNS Family Protection que, além disso, bloqueia conteúdo adulto ou AdGuard DNS Non-filtering que fornece uma conexão segura e confiável, mas não filtra nada. Você pode até adicionar servidores DNS personalizados. Também há uma opção para adicionar regras personalizadas usando [sintaxe de regra DNS](https://adguard-dns.io/kb/general/dns-filtering-syntax/). E se necessário, você pode adicionar [filtros DNS de sua escolha](https://filterlists.com). -### Parental Control +### Controle parental -There are several websites to which access should be restricted from a PC used by children. This task is accomplished by Parental Control. +Existem vários websites aos quais o acesso deve ser restringido a partir de um PC utilizado por crianças. Esta tarefa é realizada pelo Controle Parental. -![Parental Control \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png) +![Controle dos pais \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png) -The module checks the contents of web pages opened in the browser and filters those with content undesirable for children: images and texts for adults, crude language, violence, drug propaganda, etc. Parental Control settings are password-protected so that the child is not able to go round the restrictions. This module not only blocks directions to undesirable sites but can also delete the links that are inappropriate for children from the search results. +O módulo verifica o conteúdo das páginas web abertas no navegador e filtra aquelas com conteúdo indesejável para crianças: imagens e textos para adultos, linguagem grosseira, violência, propaganda de drogas, etc. As configurações do Controle Parental são protegidas por senha para que a criança não consiga contornar as restrições. Este módulo não apenas bloqueia direções para sites indesejáveis, mas também pode excluir links inadequados para crianças dos resultados da pesquisa. -In the Parental Control module you can enable the _Safe search_ and manage the _blocklist_ and the _allowlist_ to customize how this option works. You can also check the _Block executable files download_ box to prevent your child from downloading and installing software on the computer. There are two more options in the _Parental Control_ module: you can select a specific Windows user to be protected by _Parental Control_ and set a password to protect AdGuard settings from change. +No módulo Controle Parental você pode ativar a _Pesquisa segura_ e gerenciar a _lista de bloqueios_ e a _lista de permissões_ para personalizar o funcionamento desta opção. Você também pode marcar a caixa _Bloquear download de arquivos executáveis_ para evitar que seu filho baixe e instale software no computador. Existem mais duas opções no módulo _Controle Parental_: você pode selecionar um usuário específico do Windows para ser protegido pelo _Controle Parental_ e definir uma senha para proteger as configurações do AdGuard contra alterações. -![Parental Control \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png) +![Controle parental \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/parental-control.png) -### Browser Assistant +### Assistente de navegador -![Browser Assistant \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/browser-assistant/browser-assistant.png) +![Assistente de navegador \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/browser-assistant/browser-assistant.png) -From this tab you can easily proceed to install AdGuard Browser Assistant, which primary function is to manage filtering directly from the browser. We explained more about how to work with it and what to do if there is no Browser Assistant for your browser in the [separate article](/adguard-for-windows/browser-assistant.md). +A partir desta guia você pode facilmente instalar o Assistente de navegador AdGuard, cuja função principal é gerenciar a filtragem diretamente do navegador. Explicamos mais sobre como trabalhar com ele e o que fazer se não houver um Assistente de Navegador para o seu navegador no [artigo separado](/adguard-for-windows/browser-assistant.md). diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index fe6c9ebe91c..5a8c819da45 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> O AdGuard tem o compromisso de proteger sua privacidade. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Antes de enviar seus registros para a equipe de suporte, revise o arquivo, pois ele pode conter informações adicionais que você não deseja compartilhar. Se contiver tais informações pessoais, recomendamos que você as exclua primeiro. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index b84ee14ede4..840e8c457fb 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 326fd3821d0..681765c30a1 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index cfcb76e280c..1ebecc9ae15 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 b6e5563a36d..70b63293539 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard para iOS][ios-app] | [AdGuard para Safari][ext-saf] | [Bloqueador de conteúdo do AdGuard][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:---------------------------:|:------------------------------:|:-------------------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard para iOS][ios-app] | [AdGuard para Safari][ext-saf] | [Bloqueador de conteúdo do AdGuard][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:---------------------------:|:------------------------------:|:-------------------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: 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 744010d9a18..d4123cd4e51 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 @@ -73,4 +73,4 @@ Occasionally, some non-malicious websites are added to AdGuard’s filters. Faze If you suspect that a certain website might be dangerous, check it first by using our [security check tool](https://reports.adguard.com/welcome.html). -![Security check](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) +![Verificação de segurança](https://cdn.adtidy.org/content/kb/ad_blocker/general/site_warning.png) 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 221934ebf6e..b7c075b1981 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 @@ -3,120 +3,120 @@ title: Modo invisível 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. +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. -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. +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. -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**. +Abaixo, listaremos e descreveremos os principais recursos e opções que você pode controlar nas configurações do **Modo Sigiloso**. Eles são divididos em quatro grupos: **Geral**, **Métodos de rastreamento**, **API do navegador** e **Diversos**. :::note -Some options may not be available depending on the particular product due to OS or other limitations. +Algumas opções podem não estar disponíveis dependendo do produto específico devido ao sistema operacional ou outras limitações. ::: ## Geral {#general} -### Hide your search queries {#searchqueries} +### Ocultar suas consultas de pesquisa {#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. +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. -### Ask websites not to track you {#donottrack} +### Pedir aos sites que não te rastreiem {#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. +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. -### Strip tracking parameters from URLs +### Retirar parâmetros de rastreamento de URLs -If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs. +Se você ativar esta opção, o AdGuard removerá parâmetros de rastreamento como `utm_*` e `fb_ref` dos URLs das páginas. -### Tracking methods {#tracking-methods} +### Métodos de rastreamento {#tracking-methods} -### Self-destruction of third-party cookies {#3p-cookie} +### Autodestruição de cookies de terceiros {#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. +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. -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 de terceiros são aqueles implementados por um site diferente daquele que você está navegando atualmente. Por exemplo, cnn.com pode ter um widget “Curtir” do Facebook em sua página inicial. Este widget implementará um cookie que poderá ser lido posteriormente pelo Facebook. Alguns anunciantes usam esses cookies para rastrear outros sites que você visita e onde seus anúncios são mostrados. -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. +Defina um período de tempo (em minutos) ao final do qual todos os cookies de terceiros serão destruídos. Defina o cronômetro para 0 para bloqueá-los completamente. :::cuidado -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). +Esta configuração exclui todos os cookies de terceiros, incluindo as informações de seus logins através de redes sociais ou outros serviços de terceiros. Talvez você precise fazer login novamente em alguns sites periodicamente e enfrentar outros problemas relacionados a cookies. Para bloquear apenas cookies de rastreamento, use o [*Filtro de proteção contra rastreamento do AdGuard*](/general/ad-filtering/filter-policy/#tracking-protection-filter). ::: -### Self-destruction of first-party cookies {#1p-cookie} +### Autodestruição de cookies primários {#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. +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. :::cuidado -We do not recommend enabling this option as it may severely interfere with the work of certain websites. +Não recomendamos ativar esta opção, pois pode interferir gravemente no funcionamento de determinados sites. ::: -### Disable cache for third-party requests {#3p-cache} +### Desativar cache para solicitações de terceiros {#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. +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. -### Block third-party Authorization header {#3p-auth} +### Bloquear cabeçalho para autorização de terceiros {#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. +O valor do cabeçalho "Authorization" é armazenado em cache pelo navegador e, em seguida, é enviado junto com cada solicitação para esse domínio. Isso significa que ele pode ser usado para fins de rastreamento, assim como os cookies. -## Browser API {#browser-api} +## API do navegador {#browser-api} -### Block WebRTC {#webrtc} +### Bloquear WebRTC {#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) é uma tecnologia que permite streaming direto de dados entre navegadores e aplicativos. Ele pode permitir que outras pessoas saibam seu verdadeiro endereço IP, mesmo se você usar um proxy ou VPN. Ativar esta opção pode atrapalhar o funcionamento de determinados aplicativos do navegador, como mensageiros, bate-papos, cinemas ou jogos. -### Block Push API {#push} +### Bloquear a API Push {#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. +A API Push permite que os servidores enviem mensagens para aplicativos da web, independentemente do status da atividade do seu navegador. Assim, você poderá ver notificações de vários sites, mesmo que seu navegador esteja oculto na bandeja ou não iniciado. Ative essa opção para bloquear completamente a API Push do navegador. -### Block Location API {#location} +### Bloquear API de localização {#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. +Ativar esta opção impedirá que o navegador envie dados de GPS que possam ser usados para determinar sua localização, modificar seus resultados de pesquisa ou influenciar de outra forma sua experiência na web. -### Block Flash {#flash} +### Bloquear Flash {#flash} -The Flash Player plugin has become increasingly vulnerable to such online threats as viruses and hackers; it may also significantly affect website loading time. 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. +O plugin Flash Player tornou-se cada vez mais vulnerável a ameaças online como vírus e hackers; também pode afetar significativamente o tempo de carregamento do site. Ativar essa configuração faz com que o AdGuard bloqueie a capacidade dos navegadores de detectar componentes (como plug-ins e objetos ActiveXObject) que permitem que o Flash exiba conteúdo. Na prática, isso implica que os navegadores não suportem Flash. -### Block Java {#java} +### Bloquear Java {#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. +Alguns sites e serviços web ainda usam a tecnologia antiga para oferecer suporte a plug-ins Java. A API do plugin Java, que é a base dos plugins de Java, apresenta sérias falhas de segurança. Por motivos de segurança, você pode desativar esses plug-ins. No entanto, mesmo que você decida usar a opção “Bloquear Java”, o JavaScript ainda estará habilitado. ## Diversos {#miscellaneous} -### Hide Referer from third parties {#referer} +### Ocultar Referrer de terceiros {#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. +Referer é um cabeçalho HTTP usado em solicitações de navegador para servidor. Ele contém o URL da origem da solicitação. Ao navegar de uma página para outra, o Referer salva a URL da página inicial. O servidor que hospeda a página da web de destino geralmente possui um software que analisa o Referer e extrai várias informações dele. Ativar a opção *Ocultar referenciador de terceiros* oculta o site atual de sites de terceiros, alterando o cabeçalho HTTP. -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. +Você também pode definir um valor arbitrário para o Referer inserindo-o no campo *Referer personalizado*. Para usar o Referer padrão, deixe o campo em branco. -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. +Observe que, para poder filtrar o tráfego, os aplicativos AdGuard "interceptam" as solicitações do navegador para o servidor. As solicitações para servidores de anúncios, rastreamento e phishing podem ser alteradas antes de serem enviadas ao servidor ou bloqueadas completamente. O mesmo vale para a opção *Ocultar referenciador de terceiros*: o AdGuard intercepta solicitações HTTP(S), em particular para remover ou alterar o cabeçalho do referenciador se esta opção estiver habilitada. No entanto, isso só acontece depois que essas solicitações "saem" do navegador. Isso significa que, se você monitorar o Referer dentro do navegador (por exemplo, com a ajuda das Ferramentas de Desenvolvedor do Chrome), você verá o Referer original porque a solicitação ainda não chegou ao AdGuard. Você pode usar software como [Fiddler](https://www.telerik.com/fiddler) para garantir que o Referer seja alterado corretamente. -On the opposite, 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. +Pelo contrário, devido à natureza de todas as extensões do navegador, a extensão de navegador AdGuard funciona “dentro” do navegador. Ela alterará o Referer ali mesmo, então as Ferramentas do Desenvolvedor mostrarão o Referer desejado para suas solicitações. -### Hide your User-Agent {#useragent} +### Ocultar seu agente de usuário {#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. +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. -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. +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. -### Hide your IP address {#ip} +### Ocultar seu endereço de IP {#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. +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. -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. +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. -### Remove X-Client-Data header from HTTP requests {#xclientdata} +### Remover cabeçalho X-Client-Data de solicitações HTTP {#xclientdata} -It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics). +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). -### Protect from DPI {#dpi} +### Proteger de 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. +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. -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. +O AdGuard pode modificar os dados do pacote de saída para que o cliente não se enquadre nos critérios de bloqueio de DPI. Isso significa que, ao habilitar esta opção, os usuários podem ter acesso ao conteúdo que desejam. Nem todos os sistemas DPI podem ser ignorados neste momento, mas estamos trabalhando constantemente para melhorar isso. -The "Protect from DPI" feature is already implemented in AdGuard for Windows, AdGuard for Mac, and AdGuard for Android. +O recurso "Proteger contra DPI" já está implementado no AdGuard para Windows, AdGuard para Mac e AdGuard para Android. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/userscripts.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/userscripts.md index 40fb396d927..8250fd61177 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/userscripts.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/general/userscripts.md @@ -4,105 +4,105 @@ sidebar_position: 5 toc_max_heading_level: 4 --- -Userscripts (we also call them "extensions") are, de-facto, mini-programs written in JavaScript. They modify or extend the functionality of one or more websites. Many AdGuard users may be already familiar with such userscripts as AdGuard Assistant, Popup Blocker, and AdGuard Extra. +Userscripts (também chamados de "extensões") são, na verdade, miniprogramas escritos em JavaScript. Eles modificam ou ampliam a funcionalidade de um ou mais websites. Muitos usuários do AdGuard já podem estar familiarizados com scripts de usuário como o Assistente AdGuard, o Bloqueador de pop-ups e o AdGuard Extra. -:::note Supported apps +:::note Aplicativos compatíveis -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). +O AdGuard pode ampliar significativamente a funcionalidade de sites, agindo como um gerenciador de userscripts. Você pode adicionar seus scripts personalizados ou gerenciar os existentes em nossos três produtos: [AdGuard para Windows](/adguard-for-windows/features/extensions), [AdGuard para Android](/adguard-for-android/features/settings#userscripts) e [AdGuard para Mac](/adguard-for-mac/features/extensions). ::: -## Recommended AdGuard scripts +## Scripts recomendados do AdGuard -These userscripts come directly from the AdGuard developers, and we can guarantee that they are effective and safe. 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 expose yourself to a certain risk, as some scripts may be harmful to your computer. +Esses scripts de usuário vêm diretamente dos desenvolvedores do AdGuard e podemos garantir que são eficazes e seguros. Para alguns dos scripts de usuário desenvolvidos por terceiros que consideramos bons e confiáveis, [role para baixo até a próxima seção](#top-picks). Você também pode encontrar alguns dos [sites populares com scripts](#more-userscripts) abaixo, mas lembre-se de que sempre que você baixa um userscript de uma fonte desconhecida, você se expõe a um certo risco, pois alguns scripts podem ser prejudiciais para o seu computador. ### AdGuard Extra -An extension that blocks ads in difficult cases when the usual filter-based approach is not enough. AdGuard Extra comes pre-installed with all premium AdGuard versions, so you don't need to do anything to enable it. However, if you want to use it alongside AdGuard Browser Extension or any other ad blocker, you'll need to use an additional extension. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/AdGuardExtra). +Uma extensão que bloqueia anúncios em casos difíceis, quando a abordagem usual baseada em filtros não é suficiente. O AdGuard Extra vem pré-instalado com todas as versões premium do AdGuard, então você não precisa fazer nada para ativá-lo. No entanto, se quiser usá-lo junto com a extensão do navegador AdGuard ou qualquer outro bloqueador de anúncios, você precisará usar uma extensão adicional. Saiba mais sobre este userscript e como instalá-lo no [GitHub](https://github.com/AdguardTeam/AdGuardExtra). ![AdGuard Extra](https://cdn.adtidy.org/content/kb/ad_blocker/general/adguard-extra.png) -### AdGuard Popup Blocker +### Bloqueador de pop-ups do AdGuard -The name speaks for itself: it blocks pop-ups — one of the most annoying types of ads on web pages. Learn more about this userscript, its key features, and how to install it on [GitHub](https://github.com/AdguardTeam/PopupBlocker). +O nome fala por si: ele bloqueia pop-ups, um dos tipos de anúncios mais irritantes em páginas da web. Saiba mais sobre este userscript, seus principais recursos e como instalá-lo no [GitHub](https://github.com/AdguardTeam/PopupBlocker). -![AdGuard Popup Blocker](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png) +![Bloqueador de pop-ups do AdGuard](https://cdn.adtidy.org/content/kb/ad_blocker/general/popup-blocker-installation.png) -### AdGuard Assistant (legacy version) +### Assistente AdGuard (versão antiga) -This custom extension is designed to control filtering directly from the browser page (manual blocking, exclusion of the site, etc.). +Esta extensão personalizada foi projetada para controlar a filtragem diretamente da página do navegador (bloqueio manual, exclusão do site, etc.). :::note -This version of Assistant is legacy and there is no point in using it on new systems, since it has been replaced with the full-fledged [Browser Assistant](https://adguard.com/adguard-assistant/overview.html). But the legacy Assistant might be of help if there is no Browser Assistant for your browser. If this is your case, your can learn how to install AdGuard Assistant on [GitHub](https://github.com/AdguardTeam/AdguardAssistant). +Essa versão do Assistant é antiga e não faz sentido usá-la em novos sistemas, pois foi substituída pelo [Assistente de navegador](https://adguard.com/adguard-assistant/overview.html). Mas o Assistente antigo pode ser útil se não houver um Assistente de Navegador para o seu navegador. Se este for o seu caso, você pode aprender como instalar o Assistente AdGuard no [GitHub](https://github.com/AdguardTeam/AdguardAssistant). ::: -### Disable AMP +### Desativar AMP -A script that is only pre-installed in AdGuard for Android. It disables AMP (Accelerated Mobile Pages) on the Google search results page. Learn more about this userscript and how to install it on [GitHub](https://github.com/AdguardTeam/DisableAMP). +Um script pré-instalado apenas no AdGuard para Android. Ele desativa o AMP (Accelerated Mobile Pages) na página de resultados de pesquisa do Google. Saiba mais sobre este userscript e como instalá-lo no [GitHub](https://github.com/AdguardTeam/DisableAMP). -![Disable AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) +![Desativar AMP](https://cdn.adtidy.org/content/kb/ad_blocker/general/disable-amp-installation.png) -## Top picks outside AdGuard{#top-picks} +## Principais opções fora do 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 as they've all earned their good reputation. +Esses scripts de usuário não são desenvolvidos pela AdGuard e, portanto, não podemos dar 100% de garantia de que eles são seguros e/ou funcionam em todos os momentos. No entanto, de acordo com a nossa experiência, eles merecem uma recomendação, pois todos conquistaram a sua boa reputação. ### 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. +Este script remove o recurso de rastreamento do Google dos links nos resultados de pesquisa do Google. Ele acelera o carregamento dos resultados da pesquisa e permite clicar com o botão direito ou tocar para copiar o link do 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. +Seu código fonte está [disponível no GitHub](https://github.com/Rob--W/dont-track-me-google). Este userscript pode ser baixado de [GreasyFork](https://greasyfork.org/en/scripts/428243-don-t-track-me-google) e instalado em qualquer aplicativo baseado em no CoreLibs do AdGuard. ### microShield -A userscript for people who visit Korean websites and some international websites. The microShield userscript blocks Ad-Shield advertisement and anti-adblock. 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). +Um userscript para pessoas que visitam sites coreanos e alguns sites internacionais. O userscript do microShield bloqueia anúncios e anti-adblock do Ad-Shield. Seu código-fonte original está disponível em [asdefuser](https://github.com/seia-soto/userscripts/tree/master/sources/asdefuser) e [AdShield Defuser](https://github.com/seia-soto/adshield-defuser). Este userscript pode ser instalado em aplicativos baseados no CoreLibs do AdGuard, Violentmonkey, Tampermonkey e [quoid/userscripts](https://github.com/quoid/userscripts). Saiba mais sobre o microShield e como instalá-lo no [GitHub](https://github.com/List-KR/microShield). -## Where can you get more userscripts?{#more-userscripts} +## Onde obter mais userscripts?{#more-userscripts} -As 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. +Como os userscripts são criados principalmente por entusiastas, você deve ter cuidado ao instalá-los. Qualquer script de fonte desconhecida acarreta um risco potencial. No entanto, há uma grande variedade de scripts interessantes que, se instalados com cuidado e responsabilidade, podem realmente tornar o uso de alguns sites mais conveniente. -Here we will describe some of the most popular userscript catalogs. +Aqui descreveremos alguns dos catálogos de userscript mais populares. ### Stylish (userstyles.org) -[Userstyles.org](https://userstyles.org/) is a catalog of user styles, but it allows you to load them as userscripts. Thus, any user style can be installed via AdGuard. Be careful if you decide to install an unpopular script — there's a risk it might be harmful. +[Userstyles.org](https://userstyles.org/) é um catálogo de estilos de usuário, mas permite carregá-los como userscripts. Assim, qualquer estilo de usuário pode ser instalado via AdGuard. Tenha cuidado se você decidir instalar um script pouco popular, existe o risco de ele ser prejudicial. ### Greasy Fork -[Greasy Fork](https://greasyfork.org/) is a userscript catalog by Stylish creators. Unlike the above-mentioned userstyles.org, the scripts in this catalog undergo moderation, so their credibility is much higher. +[Greasy Fork](https://greasyfork.org/) é um catálogo de userscripts dos criadores do Stylish. Ao contrário do userstyles.org mencionado acima, os scripts deste catálogo passam por moderação, portanto sua credibilidade é muito maior. ### OpenUserJS.org -[OpenUserJS.org](https://openuserjs.org/) is an open source userscript catalog written in nodeJS. It doesn't have moderation so stay alert to any suspicious scripts. +[OpenUserJS.org](https://openuserjs.org/) é um catálogo de userscripts de código aberto escrito em nodeJS. Ele não tem moderação, portanto, fique atento a qualquer script suspeito. -### Community +### Comunidade -If you like the idea of personifying your browser with the help of userscripts, and you have any questions, you can ask them on one of these websites: +Se você gosta da ideia de personalizar seu navegador com a ajuda de userscripts e tem alguma dúvida, pode perguntar em um destes sites: - [Stackoverflow](https://stackoverflow.com/questions/tagged/userscripts) - [FreeNode](https://webchat.freenode.net/#greasemonkey) - [Reddit](https://www.reddit.com/r/userscripts/) -## Development +## Desenvolvimento -### Request license +### Solicitar licença -If you are developing your own custom script and want to test how it works with AdGuard, request a beta license key for the app. +Se você estiver desenvolvendo seu próprio script personalizado e quiser testar como ele funciona com o AdGuard, solicite uma chave de licença beta para o aplicativo. -To get it, please send an email to devteam@adguard.com with the following information: +Para obtê-la, envie um email para devteam@adguard.com com as seguintes informações: -**Subject:** Userscript author license request +**Assunto:** Solicitação de licença de autor do Userscript -**Body:** Please tell us about the userscripts you are working on. +**Corpo da mensagem:** Por favor, conte-nos sobre os userscripts nos quais você está trabalhando. -Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). +Aqui está um [link mailto](mailto:devteam@adguard.com?Subject=Userscript%20author%20license%20request&Body=Hello%2C%0A%0AMy%20userscript%28s%29%3A%20LINK). -### Compatibility +### Compatibilidade -#### Metadata block +#### Bloqueio de metadados -##### Supported properties +##### Propriedades compatíveis ```text @name @@ -132,23 +132,23 @@ Here is a [mailto link](mailto:devteam@adguard.com?Subject=Userscript%20author%2 @icon64URL ``` -##### Unsupported properties +##### Propriedades não compatíveis -These properties will be simply ignored by Adguard. +Essas propriedades serão simplesmente ignoradas pelo Adguard. ```text @unwrap ``` -#### Supported GM functions +#### Funções GM compatíveis -AdGuard supports both old GM\_ functions and new GM4 API that use GM object. +O AdGuard oferece suporte às antigas funções GM\_ e à nova API GM4 que usa o objeto GM. -##### Values +##### Valores :::note -All listed old Greasemonkey functions are deprecated but still supported. +Todas as funções antigas do Greasemonkey listadas estão obsoletas, mas ainda são suportadas. ::: @@ -169,9 +169,9 @@ GM_addStyle GM_log ``` -[Here](https://wiki.greasespot.net/GM.info) you can find more information about Greasemonkey API. +[Aqui](https://wiki.greasespot.net/GM.info) você pode encontrar mais informações sobre a API Greasemonkey. -### Example +### Exemplo ```javascript // ==UserScript== diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index ffa8ce78deb..121b4bb053c 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Neste artigo, vamos guiá-lo através do processo de recolha de registos de depuração, um passo de resolução de problemas essencial para resolver problemas complexos que possam surgir. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index a93fce90645..bf335a286b2 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index cb86eba4897..4420f677249 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 4b4b329f3e3..af8225e68c4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index b18ad60ff3a..bef91ffd5f4 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index cf78e14e5dd..97b308f95dd 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index 04bae38bbfd..bf443dc87ef 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Este artigo aborda o AdGuard para Windows, um bloqueador de anúncios multifunci ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 10cb5d6e3ca..815ab7497f2 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/ro/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index 0907e7c9c76..e919365705b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,9 +51,13 @@ sidebar_position: 1 ## Отправкка логов -> AdGuard стремится защищать вашу конфиденциальность. Мы строго соблюдаем нашу [Политику конфиденциальности](https://adguard.com/en/privacy/browser-extension.html) и не собираем никакой личной информации о пользователях. Перед отправкой логов в поддержку проверьте, не содержит ли файл дополнительную информацию, которую вы не хотите передавать. Если в файле осталась личная информация, рекомендуем удалить её. +:::note -Теперь, когда вы собрали логи, выполните следующие действия, чтобы отправить их нашей команде разработчиков: +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. -1. Сообщите об ошибке [на GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). -2. Отправьте архив с логами и временем воспроизведения на адрес `devteam@adguard.com` и прикрепите ссылку на свою задачу на GitHub. Вы также можете загрузить архив на Google Диск и добавить на него ссылку вместо прикрепления файла. +::: + +Now that you have collected the logs, please follow these steps to submit them to our development team: + +1. Report the bug on [GitHub](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/new/choose). +2. Send your archive with logs and playback time to `devteam@adguard.com` and add a link to your GitHub issue. You can also upload the archive to Google Drive and add the link to it instead of attaching the file. diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index 71129ec1579..4aa2cbe05f9 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## Что такое файлы HAR? Формат HAR (HTTP ARchive) представляет собой файл архива в формате JSON для протоколирования взаимодействия браузера с сайтом. Технические характеристики формата HAR определяют архивные данные для транзакций HTTP, которые используются браузером для экспорта подробной информации о загружаемых веб-страницах. Более подробное описание формата файла HAR и его характеристик вы можете найти на сайте [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/). 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 af4a2d37465..b56d4553a46 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 @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + В этой статье мы расскажем вам о том, как собирать отладочные логи — важном этапе поиска неисправностей для решения сложных проблем, которые могут потенциально возникнуть. Отладочные логи позволяют получить подробное представление о внутреннем устройстве AdGuard для Android. Если команда поддержки AdGuard попросит вас предоставить отладочные логи, просто следуйте этим инструкциям. -> AdGuard стремится защищать вашу конфиденциальность. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Перед отправкой логов в поддержку проверьте, не содержит ли файл дополнительную информацию, которую вы не хотите передавать. Если в файле осталась личная информация, рекомендуем удалить её. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Сбор отладочных логов 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 62fb81d070f..818691edf07 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 @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Иногда обычных логов может быть недостаточно, чтобы определить источник проблемы. В таких случаях необходимы системные логи. Их можно собрать через настройки разработчика и Logcat, ниже — подробные инструкции. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Получение отчёта об ошибке с устройства Чтобы получить отчёт об ошибке непосредственно с вашего устройства, выполните следующие действия: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 624260e91d4..58b05f557a8 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ sidebar_position: 4 Теперь вы можете отправить этот файл на support@adguard.com или прикрепить его к сообщению об ошибке на GitHub. -> AdGuard стремится защищать вашу конфиденциальность. Мы строго соблюдаем нашу [Политику конфиденциальности](https://adguard.com/privacy/safari.html) и не собираем никакой личной информации о пользователях. Перед отправкой логов в поддержку проверьте, не содержит ли файл дополнительную информацию, которую вы не хотите передавать. Если в файле осталась личная информация, рекомендуем удалить её. +:::note -1. Откройте репозиторий [AdGuard для Safari на GitHub](https://github.com/AdguardTeam/AdGuardForSafari/issues) и нажмите _New issue_. -2. Отправьте файл с логами на адрес devteam@adguard.com. Укажите время возникновения ошибки и прикрепите ссылку на вашу проблему или её номер (он отображается как #число рядом с заголовком). - Кроме того, вы можете загрузить файл с логами на Google Диск и отправить его на devteam@adguard.com. Добавьте ссылку на файл к задаче на GitHub. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. Укажите время возникновения ошибки и прикрепите ссылку на вашу проблему или её номер (он отображается как #число рядом с заголовком). + Кроме того, вы можете загрузить файл с логами на Google Диск и отправить его на devteam@adguard.com. Add the file link to your GitHub issue. 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 ec514d108cd..9edc8a98ae5 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 @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Измене Это основной модуль AdGuard для Windows, блокирующий рекламу на сайтах, которые вы посещаете, и в приложениях, установленных на вашем устройстве. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) В модуле Блокировщик рекламы вы можете: - включить автоматическую активацию языковых фильтров, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, 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 c2e6817d5ea..5d1306f7a91 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 @@ -9,9 +9,19 @@ sidebar_position: 3 ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Для анализа и диагностики различных проблем службе поддержки могут понадобиться файлы журнала AdGuard. Эти файлы содержат записи обо всех ошибках, которые произошли с программой за последнее время. Ниже представлена краткая инструкция, описывающая как получить и отправить в службу поддержки файлы журнала. -> AdGuard стремится защищать вашу конфиденциальность. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Перед отправкой логов в поддержку проверьте, не содержит ли файл дополнительную информацию, которую вы не хотите передавать. Если в файле осталась личная информация, рекомендуем удалить её. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 9bc1442cf88..b4b9c1c5a8b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ sidebar_position: 8 ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Для диагностики проблем и ошибок, с которыми пользователи могут столкнуться при использовании AdGuard, службе поддержки может понадобиться файл дампа. Файл дампа помогает разработчикам увидеть процессы, которые выполнялись в приложении за определённый период времени. Ниже вы можете ознакомиться с инструкциями о том, как собрать файл дампа на вашем компьютере. 1. Нажмите **Ctrl + Shift + Esc** и нажмите **Диспетчер задач** diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 57d20ddf5c0..ffa32e2b16c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ sidebar_position: 4 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Если во время установки AdGuard возникнут какие-либо проблемы, служба поддержки может попросить вас собрать и отправить им журналы установки AdGuard. В этом случае вам необходимо: 1. Выберите команду *Выполнить* в меню «Пуск» или нажмите *Win + R* на клавиатуре. diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index e707b309755..69689cd10df 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ sidebar_position: 5 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Для анализа и диагностики сложных проблем, связанных с работой AdGuard, службе поддержки могут понадобиться файлы журнала Windows. Журналы Windows содержат записи о системных событиях и ошибках за последнее время. Ниже представлена инструкция для получения и отправки этих файлов. 1. Нажмите *Win + R* @@ -36,3 +42,9 @@ sidebar_position: 5 - Выберите папку назначения, введите имя и нажмите *Сохранить*. Выберите *Отображать сведения для следующих языков*. Поставьте галочку напротив пункта *Английский язык*. Нажмите *OK*. Полученные два файла отправьте в службу поддержки AdGuard: **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 1781c89cb47..a2a9328a753 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 @@ -352,7 +352,8 @@ Wildcard-символы поддерживаются для TLD-доменов :::caution Ограничения - Паттерн правила не может указывать на конкретные домены, например, не может начинаться с `||`. -- Домены в значении модификатора не могут иметь отрицание (например, `$denyallow=~x.com`) или wildcard домена верхнего уровня `$denyallow=x.*`. +- 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`. Правила, нарушающие эти ограничения, считаются недействительными. @@ -450,7 +451,7 @@ Safari не поддерживает одновременно разрешённ :::info Совместимость -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ AdGuard будет пытаться закрыть браузерную вкла :::caution Ограничения -[`$denyallow`](#denyallow-modifier) нельзя использовать вместе с `$to`. Его можно выразить инвертированным `$to`: `$denyallow=a.com|b.com` эквивалентно `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ $extension="userscript name\, with \"quote\"" $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -Здесь `opt(i)` обозначают опции «Антитрекинг»‎, отключаемые правилами. The modifier can contain any number of options (see below) or none. В последнем случае модификатор отключает модуль «Антитрекинг»‎ полностью. +Здесь `opt(i)` обозначают опции «Антитрекинг»‎, отключаемые правилами. The modifier can contain any number of specific options (see below) or none. В последнем случае модификатор отключает модуль «Антитрекинг»‎ полностью. Список доступных опций модификатора: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Параметры модификатора не могут отрицаться, т.е. `$stealth=~3p-cookie` будет отклонён. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Совместимость -- Антитрекинг доступен в AdGuard для Windows, Mac и Android и в Браузерном расширении AdGuard. Все остальные продукты будут игнорировать правила с модификатором `$stealth`. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. Все остальные продукты будут игнорировать правила с модификатором `$stealth`. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ domain.com###banner -| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "устарел") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "устарел") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Модификатор \ Продукты | [Приложения CoreLibs][cl-apps] | [AdGuard для Chromium][ext-chr] | [AdGuard для Firefox][ext-ff] | [AdGuard для iOS][ios-app] | [AdGuard для Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "устарел") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "устарел") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — полностью поддерживается - ✅ * — поддерживается, но надёжность может быть разной или могут возникнуть ограничения; ознакомьтесь с описанием модификатора для получения подробной информации - -- ⏳ — функция, которая реализована или планируется к реализации, но пока недоступна ни в одном продукте +- 🧩 — может быть уже реализован в nightly или бета-версиях, но пока не поддерживается в релизных версиях + - ❌ — не поддерживается - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||example.org/page/*$permissions=autoplay=()` отключает все правила с модификатором `$permissions`, в точности соответствующим `autoplay=()` на всех страницах, подходящих под паттерн правила. Например, правило выше. 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` отключает все `$permissions`-правила на всех страницах, подходящих под паттерн правила. - `$domain=example.org|example.com,permissions=storage-access=()\, camera=()` запрещает использование Storage Access API для запроса доступа к неразмеченным куки, а также использование устройств видеоввода на сайтах `example.org` и `example.com`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` или `@@||example.org^$urlblock` отключает все `$permission`-правила на всех страницах, подходящих под паттерн правила. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Ограничения 1. В модификаторе `$permissions` запрещён символ `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Совместимость -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -3909,7 +3916,7 @@ In the modifiers values, the following characters must be escaped: `[`, `]`, `,` :::note - ✅ — полностью поддерживается -- ⏳ — реализован или планируется к реализации, но пока недоступен ни в одном продукте +- ⏳ — функция, которая реализована или планируется к реализации, но пока недоступна ни в одном продукте - ❌ — не поддерживается ::: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md index b4846c11dcc..449243bc5da 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md @@ -62,7 +62,7 @@ sidebar_position: 6 - Межстраничная реклама — полноэкранная реклама на мобильных устройствах, которая закрывает интерфейс приложения или веб-браузера - Остатки рекламы, которые занимают большое пространство или выделяются на общем фоне и привлекают внимание посетителей (за исключением едва заметных или незаметных) - Антиадблок-реклама — альтернативная реклама, отображаемая на сайте, когда основная заблокирована -- Bait elements that are used by multiple known adblock detection scripts to detect an ad blocker presence for different goals including changing the way ads are shown, fingerprinting, etc. +- Элементы-приманки, которые используются несколькими известными скриптами для обнаружения блокировщика рекламы. Это делается для различных целей, включая изменение способа показа рекламы, фингерпринтинга и т. д. - Собственная реклама сайта, если она была заблокирована общими правилами фильтрации (см. раздел *Ограничения и исключения*) - Антиадблок-скрипты, препятствующие использованию сайта (см. раздел *Ограничения и исключения*) - Реклама, внедряемая вредоносным ПО, если предоставлена подробная информация о способе её загрузки или шагах воспроизведения @@ -114,7 +114,7 @@ sidebar_position: 6 - Отслеживающие файлы куки - Пиксели отслеживания - Отслеживающие API браузеров -- Detection of the ad blocker for tracking purposes +- Обнаружение блокировщика рекламы в целях отслеживания - Функции Privacy Sandbox в Google Chrome и его ответвлениях, используемых для отслеживания (Google Topics API, Protected Audience API) **Фильтр отслеживания URL** предназначен для удаления параметров отслеживания с веб-адресов diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/sv/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/ta/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index e604e296fb6..3ad09fbc70e 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Günlükleri gönderme -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard gizliliğinizi korumaya kararlıdır. [Gizlilik Politikamıza](https://adguard.com/privacy/browser-extension.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Günlüklerinizi destek ekibine göndermeden önce, paylaşmak istemediğiniz ek bilgiler içerebileceğinden lütfen dosyayı inceleyin. Bu tür kişisel bilgiler içeriyorsa öncelikle onu silmenizi öneririz. + +::: Artık günlükleri topladığınıza göre, bunları geliştirme ekibimize göndermek için lütfen aşağıdaki adımları izleyin: diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index a5191d7f678..c0ab18197d2 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::not + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## HAR dosyaları nedir? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 7b65755ecc4..05e548c05de 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::not + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Bu makalede, potansiyel olarak ortaya çıkabilecek karmaşık sorunları çözmek için önemli bir sorun giderme adımı olan hata ayıklama günlüklerini toplama sürecinde size rehberlik edeceğiz. Hata ayıklama günlükleri, Android için AdGuard'ın iç işleyişine ilişkin ayrıntılı bilgiler sağlar. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::not + +AdGuard gizliliğinizi korumaya kararlıdır. [Gizlilik Politikamıza](https://adguard.com/privacy/android.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Günlüklerinizi destek ekibine göndermeden önce, paylaşmak istemediğiniz ek bilgiler içerebileceğinden lütfen dosyayı inceleyin. Bu tür kişisel bilgiler içeriyorsa öncelikle onu silmenizi öneririz. + +::: ### Hata ayıklama günlüğü toplama diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index baa11e0312b..3abc70df568 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::not + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Bazen normal bir günlük, sorunun kaynağını belirlemek için yeterli olmayabilir. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::not + +AdGuard gizliliğinizi korumaya kararlıdır. [Gizlilik Politikamıza](https://adguard.com/privacy/android.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Günlüklerinizi destek ekibine göndermeden önce, paylaşmak istemediğiniz ek bilgiler içerebileceğinden lütfen dosyayı inceleyin. Bu tür kişisel bilgiler içeriyorsa öncelikle onu silmenizi öneririz. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index a74e58da79f..1025a2bdf1c 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ Safari için AdGuard ile oluşabilecek çeşitli sorunları analiz etmek ve teş Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. [Gizlilik Politikamıza](https://adguard.com/privacy/safari.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard gizliliğinizi korumaya kararlıdır. [Gizlilik Politikamıza](https://adguard.com/privacy/safari.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Günlüklerinizi destek ekibine göndermeden önce, paylaşmak istemediğiniz ek bilgiler içerebileceğinden lütfen dosyayı inceleyin. Bu tür kişisel bilgiler içeriyorsa öncelikle onu silmenizi öneririz. + +::: 1. [Safari için AdGuard GitHub reposunu](https://github.com/AdguardTeam/AdGuardForSafari/issues) açın ve _New issue_ öğesine tıklayın. 2. Günlük dosyasını devteam@adguard.com adresine gönderin. Hatanın zamanını ekleyin ve sorununuzun bağlantısını veya numarasını ekleyin (başlığın yanında #sayı olarak görünür). diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md index 510e2cf349f..19360164bd1 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/browser-assistant.md @@ -15,7 +15,7 @@ AdGuard Tarayıcı Asistanı bir tarayıcı uzantısıdır, bir tarayıcıya yü ### Ana uygulama ile uyumluluk -If you got into the habit of using our previous [AdGuard Ad Blocker extension](/adguard-browser-extension/compatibility), you might like the solution that we have developed for the new Browser Assistant. +Önceki [AdGuard Reklam Engelleyici uzantımızı](/adguard-browser-extension/compatibility) kullanmayı alışkanlık hâline getirdiyseniz, yeni Tarayıcı Asistanı için geliştirdiğimiz çözümü beğenebilirsiniz. Arka plan bilgisi: diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 448e7c1b156..ed8e76ca192 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ Ekranın en altında _Gelişmiş Ayarlar_ öğesini bulacaksınız. Changing som Bu, ziyaret ettiğiniz sitelerden ve cihazınızda yüklü uygulamalardan reklamları kaldıran Windows için AdGuard'ın ana modülüdür. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Reklam engelleyici \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) Reklam Engelleyici modülünde şunları yapabilirsiniz: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 18f2bfaf421..6db5d1972f7 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ Bu makale, cihazınızı sistem düzeyinde koruyan çok işlevli bir reklam enge ::: +:::not + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Ortaya çıkabilecek farklı sorunları analiz etmek ve teşhis etmek için AdGuard destek hizmetinin AdGuard günlük dosyalarına ihtiyacı olabilir. Bu dosyalar, yazılımda meydana gelen hatalar ve diğer olaylarla ilgili kayıtları içerir. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::not + +AdGuard gizliliğinizi korumaya kararlıdır. [Gizlilik Politikamıza](https://adguard.com/privacy/windows.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Günlüklerinizi destek ekibine göndermeden önce, paylaşmak istemediğiniz ek bilgiler içerebileceğinden lütfen dosyayı inceleyin. Bu tür kişisel bilgiler içeriyorsa öncelikle onu silmenizi öneririz. + +::: ### Hata ayıklama günlükleri {#debug-logs} diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 0a0b064c979..6f1ecba153b 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ Bu makale, cihazınızı sistem düzeyinde koruyan çok işlevli bir reklam enge ::: +:::not + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Kullanıcıların AdGuard'ı kullanırken karşılaşabilecekleri olası sorunların nedenlerini teşhis etmek için, destek ekibi işlem döküm dosyasına ihtiyaç duyabilir. Döküm dosyası, geliştiricilerin belirli bir süre boyunca uygulamada yürütülen işlemleri görmesine yardımcı olur. Aşağıda döküm dosyasının PC'nizde nasıl toplanacağına ilişkin talimatları kontrol edebilirsiniz. 1. **Ctrl + Shift + Esc** tuşlarına basın ve **Görev Yöneticisi** öğesine tıklayın diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 81eff8cec83..222b3c8e451 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ Bu makale, cihazınızı sistem düzeyinde koruyan çok işlevli bir reklam enge ::: +:::not + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + AdGuard kurulumu sırasında herhangi bir sorun oluşursa, destek ekibi sizden AdGuard kurulum günlüklerini toplamanızı ve göndermenizi isteyebilir. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index 573ad6b49d0..b8f8568085e 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ Bu makale, cihazınızı sistem düzeyinde koruyan çok işlevli bir reklam enge ::: +:::not + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Ortaya çıkabilecek farklı sorunları analiz etmek ve teşhis etmek için AdGuard destek hizmetinin Windows sistem günlük dosyalarına ihtiyacı olabilir. Windows olay günlükleri, AdGuard da dahil olmak üzere yüklü yazılımda meydana gelen tüm hatalara ilişkin kayıtları içerir. Aşağıda günlük dosyalarını nasıl alacağınızı ve gerekirse destek servisimize nasıl göndereceğinizi açıklayan kısa talimat bulunmaktadır. 1. *Win + R* tuşlarına basın @@ -36,3 +42,9 @@ Ortaya çıkabilecek farklı sorunları analiz etmek ve teşhis etmek için AdGu - Choose a destination folder, enter the name, click *Save*. *Aşağıdaki diller için bilgileri görüntüle* öğesini seçin. *İngilizce* öğesinin yanındaki kutuyu işaretlemeniz gerekir. *Tamam* öğesine tıklayın. Lütfen yakın zamanda kaydettiğiniz iki dosyayı **support@adguard.com** adresine gönderin. + +:::not + +AdGuard gizliliğinizi korumaya kararlıdır. [Gizlilik Politikamıza](https://adguard.com/privacy/windows.html) kesinlikle uyuyoruz ve kullanıcılar hakkında herhangi bir özel bilgi toplamıyoruz. Günlüklerinizi destek ekibine göndermeden önce, paylaşmak istemediğiniz ek bilgiler içerebileceğinden lütfen dosyayı inceleyin. Bu tür kişisel bilgiler içeriyorsa öncelikle onu silmenizi öneririz. + +::: 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 1e2c1b079b6..42f321bd286 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 @@ -352,7 +352,8 @@ veya bu üçünün birleşimine: :::dikkat Kısıtlamalar - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Uyumluluk -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ Tam değiştirici adını kullanmak yerine daha kısa bir ad (takma ad) kullanab :::dikkat Kısıtlamalar -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier), `$to` ile birlikte kullanılamaz. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. Değiştirici herhangi bir sayıda belirli seçenek içerebilir (aşağıya bakın) veya hiçbirini içerebilir. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Tarayıcı Uzantısı yalnızca `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` ve `3p-cookie` seçeneklerini destekler. ::: :::info Uyumluluk -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Gizlilik Modu Windows için AdGuard, Mac için AdGuard, Android için AdGuard ve AdGuard Tarayıcı Uzantısında mevcuttur. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [iOS için AdGuard][ios-app] | [Safari için AdGuard][ext-saf] | [AdGuard İçerik Engelleyici][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:---------------------------:|:------------------------------:|:------------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [iOS için AdGuard][ios-app] | [Safari için AdGuard][ext-saf] | [AdGuard İçerik Engelleyici][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:---------------------------:|:------------------------------:|:------------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::not - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — uygulanan veya uygulanması planlanan ancak henüz hiçbir üründe bulunmayan özellik +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — desteklenmiyor - 👎 — kullanımdan kaldırıldı; hâlâ destekleniyor ancak gelecekte kaldırılacaktır @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Söz dizimi** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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. İstisna kuralının yalnızca **tam değer eşleşmesi** durumunda etkili olacağına dikkat etmek önemlidir. 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::not @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox, `Permissions-Policy` başlığını yok sayar. Daha fazla bilgi için [bu soruna](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922) bakınız. @@ -1956,13 +1962,14 @@ Firefox, `Permissions-Policy` başlığını yok sayar. Daha fazla bilgi için [ :::dikkat Kısıtlamalar 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Uyumluluk -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -3909,7 +3916,7 @@ In the modifiers values, the following characters must be escaped: `[`, `]`, `,` :::not - ✅ — fully supported -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- ⏳ — uygulanan veya uygulanması planlanan ancak henüz hiçbir üründe bulunmayan özellik - ❌ — not supported ::: diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md index 2c766ddbb31..f7b2720e957 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/general/ad-filtering/filter-policy.md @@ -50,7 +50,7 @@ AdGuard ad-blocking filters include: The goal of ad-blocking filters is to block all types of advertising on websites, applications, and certain devices that can load ads from the Internet: -- Banners — advertisements displayed as images in various parts of web pages +- Afişler — web sayfalarının çeşitli bölümlerinde resim olarak görüntülenen reklamlar - Teasers — text or graphical ads, often animated, designed to intrigue visitors (sensational headlines, attention-grabbing images) and prompt them to click on the banner (clickbait) - Text ads — advertising in the form of text, including links - Modal adverts — advertising that suddenly appears over the current content in the form of modal windows diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/uk/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md index ad7909500bf..816a7059ef9 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/compatibility.md @@ -15,7 +15,7 @@ If you decide to install both the extension and the standalone program on your P If you have the desktop version of AdGuard installed on your PC, it is better to use AdGuard Browser Assistant instead of the extension. -## AdGuard Browser Assistant +## AdGuard 浏览器助手 ![AdGuard Browser Assistant \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/browser_extension/ad_blocker_browser_extension_assistant.png) diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index b5a34fec1f8..2a769c1665d 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard 致力于保护用户的个人隐私。 We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. 请注意:在将您的日志记录发送给客户支持团队之前,请检查文件,因为它会包含您不想分享的附加信息。 如果其中包含此类个人信息,我们建议您先将其删除。 +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index c93fd7027f1..eddd8c4b916 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ sidebar_position: 5 ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## 什么是 HAR 文件? HAR(HTTP ARchive)格式是 JSON 格式的存档文件,用于记录 Web 浏览器与站点的交互。 HAR 格式的规范定义了 HTTP 交易的存档数据,浏览器使用该数据来导出其加载的网页的详细信息。 您可以在 [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) 网站上找到有关 HAR 文件格式及其使用规范的更详细说明。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index cb93d8ad132..555e8eaa915 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ sidebar_position: 2 ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 在本文中,我们将指导用户完成收集调试日志的过程,这是解决可能出现的复杂问题的基本故障排除步骤。 调试日志可让您详细了解 Android 版 AdGuard 的内部运作。 如 AdGuard 支持团队要求调试日志,您可按以下指示说明操作即可。 -> AdGuard 致力于保护用户的个人隐私。 We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. 请注意:在将您的日志记录发送给客户支持团队之前,请检查文件,因为它会包含您不想分享的附加信息。 如果其中包含此类个人信息,我们建议您先将其删除。 +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### 收集调试日志 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 2502d293e9c..4dbab96ec16 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ sidebar_position: 4 ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 有时候常规日志可能无法识别问题的根源。 在这种情况下,就需要系统日志。 以下是收集日志的说明:通过开发人员选项和 Logcat。 +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## 从设备捕获错误报告 要从设备获取错误报告,请执行以下操作: diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index 436be84dbe9..35c950c2233 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,8 +19,12 @@ sidebar_position: 4 现在您可以将此文件发送至 support@adguard.com,或将其附加到您在 GitHub 上的错误报告中。 -> AdGuard 致力于保护用户的个人隐私。 我们严格遵守[隐私政策](https://adguard.com/privacy/safari.html),不收集用户的私人信息。 请注意:在将您的日志记录发送给客户支持团队之前,请检查文件,因为它会包含您不想分享的附加信息。 如果其中包含此类个人信息,我们建议您先将其删除。 +:::note -1. 打开[适用于 Safari 的 AdGuard GitHub 存储库](https://github.com/AdguardTeam/AdGuardForSafari/issues),然后点击「_New issue_」。 -2. 将日志记录文件发送至 devteam@adguard.com。 包括错误发生的时间并附加指向您的问题或其编号的链接(它在标题旁边显示为 #number)。 - 或者,用户可将日志文件上传到 Google Drive 并将其发送至 devteam@adguard.com。 将文件链接添加到您的 GitHub 问题. +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + +1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. +2. Send the log file to devteam@adguard.com. 包括错误发生的时间并附加指向您的问题或其编号的链接(它在标题旁边显示为 #number)。 + 或者,您可以将日志文件上传到 Google Drive 并将其发送至 devteam@adguard.com。 Add the file link to your GitHub issue. diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 954072195d2..244e95e8f0e 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ sidebar_position: 2 此为 Windows 版 AdGuard 的主模块,可从用户访问的网站上和设备上安装的应用内移除广告。 要过来广告和威胁隐私的内容,如横幅,弹窗或跟踪器,AdGuard 使用不同的过滤器:用[特定语法](/general/ad-filtering/create-own-filters)编写的有类似用途的规则组。 要了解什么是过滤器及其工作原理,请阅读[本文](/general/ad-filtering/how-ad-blocking-works)。 -![广告拦截器 \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) 在广告拦截器模块中,可以进行以下设置: - 开启自动激活特定语言的过滤器 - 禁用[搜索广告和自我推销](/general/ad-filtering/search-ads)拦截 +- disable ads in the Start menu on Windows 11, - 激活预安装的过滤器,如「AdGuard 基础过滤器」 - 点击「添加过滤器」按钮从列表上安装过滤器或添加自定义过滤器 - 使用「过滤器编辑器」按钮更改现有规则组 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 109d8507275..4a7c713216f 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ sidebar_position: 3 ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 要分析和诊断可能潜在的问题,AdGuard 技术人员可能需要 AdGuard 日志记录文件。 这些文件包含本软件发生的错误记录和其它事件。 下面是简短的说明,描述获取日志文件的方法,并在必要时将其发送给支持服务。 -> AdGuard 致力于保护用户的个人隐私。 我们严格遵守我们的[隐私政策](https://adguard.com/en/privacy/windows.html) ,不收集任何有关用户的私人信息。 请注意:在将您的日志记录发送给客户支持团队之前,请检查文件,因为它会包含您不想分享的附加信息。 如果包含此类个人信息,我们建议您删除它。 +:::note + +AdGuard 致力于保护用户的个人隐私。 We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. 请注意:在将您的日志记录发送给客户支持团队之前,请检查文件,因为它会包含您不想分享的附加信息。 如果包含此类个人信息,我们建议您删除它。 + +::: ### 调试日志 {#debug-logs} diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 4669fa03077..b52f4470c28 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ sidebar_position: 8 ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 要诊断用户在使用 AdGuard 期间可能遇到的潜在问题,支持团队需要进程 Dump 文件(转储文件)。 转储文件帮助开发者展现应用程序在某个周期内执行的进程。 用户可以按以下所述方式收集电脑上的转储文件。 1. 按按键组合「**Ctrl + Shift + Esc**」点击「**任务管理器**」 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index f56342103c2..b9f608b4742 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ sidebar_position: 4 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 如您在安装 AdGuard 期间发生问题,可以发送技术请求给我们的支持团队,但他们会要求您收集并发送 AdGuard 安装日志。 在这种情况下,您需要执行以下操作: 1. 从开始菜单选择「*运行*」命令或按按键组合「*Win + R*」。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fe960dfd805..bc0d02ebcaa 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ sidebar_position: 5 ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + 要分析和诊断可能潜在的问题,AdGuard 支持服务可能需要 Windows 系统日志文件。 Windows 事件日志记录着所有已安装软件发生的错误,包括 AdGuard 在内。 下面我们简述获取日志文件的方式并在需要的时候反送给我们的支持服务。 1. 按「*Win + R*」 @@ -36,3 +42,9 @@ sidebar_position: 5 - 选择目标文件夹,输入名称,点击「*保存*」。 选择「*显示以下语言的信息*」。 您需要选中「*English*」旁边的复选框。 单击「*确定*」。 请发送您最近保存的两个文件到 **support@adguard.com**。 + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 d096ebeb02c..16e9d3ca685 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard iOS版][ios-app] | [AdGuard Safari版][ext-saf] | [AdGuard 内容拦截器][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:-----------------------:|:--------------------------:|:-----------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard iOS版][ios-app] | [AdGuard Safari版][ext-saf] | [AdGuard 内容拦截器][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:-----------------------:|:--------------------------:|:-----------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: 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 d08f524f999..7b0dac51553 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 @@ -3,120 +3,120 @@ title: 隐身模式 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. +众多网站收集其访问者的信息,例如 IP 地址,安装的浏览器及操作系统,屏幕分辨率,甚至是重新定向访问者的页面。 有些网页使用 Cookie 以标记用户的浏览器并保存个人设置及首选项,或在用户下次访问时进行身份识别。 隐身模式可保护个人信息免受此类数据和统计收集系统的侵害。 -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. +您可以灵活调整隐身模式的工作:例如,可以禁止网站接收您在互联网上查找其时使用的搜索请求,自动删除第三方和网站自己的 Cookie,关闭可用于跟踪您行踪的浏览器地理位置共享,以及隐藏真实 IP 地址,甚至用任意 IP 地址取而代之。 -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**. +以下我们详述控制**隐身模式**设置的主功能和选项。 他们分为四组:**常规**、**跟踪方式**、**浏览器 API** 和**其他**。 :::note -Some options may not be available depending on the particular product due to OS or other limitations. +由于操作系统或其它限制,部分产品的某些选项可能不可用。 ::: ## 常规 {#general} -### Hide your search queries {#searchqueries} +### 隐藏搜索查询 {#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. +当用户从 Google、Yahoo 或任何其它搜索引擎定向到某个网站时,该设置隐藏您用于查找相应网站的搜索查询。 -### Ask websites not to track you {#donottrack} +### 要求网站不进行跟踪 {#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. +向用户访问的网站发送[全球隐私控制](https://globalprivacycontrol.org/#gpc-spec)与[请勿跟踪](https://en.wikipedia.org/wiki/Do_Not_Track)信号。 -### Strip tracking parameters from URLs +### 剥离 URL 内的跟踪参数 -If you enable this option, AdGuard will strip tracking parameters like `utm_*` and `fb_ref` from pages’ URLs. +开启此功能后,AdGuard 将从网页的 URL 内剥离跟踪参数,如 `utm_*` 和 ` fb_ref`。 -### Tracking methods {#tracking-methods} +### 跟踪方式 {#tracking-methods} -### Self-destruction of third-party cookies {#3p-cookie} +### 自销毁第三方 Cookie {#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. +网站使用 Cookie 存储用户的信息和首选项,如所选语言,地理位置或购物车上的物品清单。 当您回到网站时,浏览器会回送所属网站的 Cookie,允许其“记住”您的数据。 -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. +第三方 Cookie 由用户当前所在网站以外的其他网站设置。 例如,cnn.com 主页上可能有一个 Facebook「赞」小部件。 此小工具将执行 Cookie,Facebook 可能会在稍后读取它。 某些广告商使用此类 Cookie 跟踪用户访问的被托管广告的网站。 -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. +以分钟为单位设置销毁所有第三方 Cookie 的时间段。 设置计时器为 0 以完全阻止它们。 :::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). +此设置会删除所有第三方 Сookie,包括用户通过社交网络或其他第三方服务登录的信息。 您可能需要定期重新登录一些网站并面临其他与 Cookie 相关的问题。 要仅阻止跟踪 Cookie,请使用「[*AdGuard 跟踪保护过滤器*](/general/ad-filtering/filter-policy/#tracking-protection-filter)」。 ::: -### Self-destruction of first-party cookies {#1p-cookie} +### 自销毁第一方 Cookie {#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. +以分钟为单位设置销毁所有 Cookie 的时间段。 设置计时器为 0 以完全阻止它们。 :::caution -We do not recommend enabling this option as it may severely interfere with the work of certain websites. +我们不推荐您开启此项,因为它可能会严重干扰某些网站的工作。 ::: -### Disable cache for third-party requests {#3p-cache} +### 禁用缓存第三方请求 {#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. +当浏览器寻址某个网页时,服务器会指派 ETag 给相应的网页。 此 ETag 是用于浏览器缓存网页内容。 在进行后续的请求时,浏览器会发送 ETag 给相应的服务器,从而让服务器知晓访问者的身份。 只要网站文件处于缓存状态,浏览器每次访问此网站时都会发送 ETag。 如此网站内嵌其它服务器的内容(如图像或 iframe),则服务器可在您不知情的情况下跟踪您的活动。 -### Block third-party Authorization header {#3p-auth} +### 拦截第三方授权头部 {#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. +“Authorization”(授权)头部值由浏览器缓存,然后与每个请求一起发送到相应的域。 这意味着它可以如 Cookie 一般用于跟踪目的。 -## Browser API {#browser-api} +## 浏览器 API {#browser-api} -### Block WebRTC {#webrtc} +### 拦截 WebRTC {#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(网络实时通信)是一种允许在浏览器和应用程序之间直接传输数据流的技术。 其允许其他人知晓您的实际 IP,即使您使用代理或 VPN。 开启此项可能会干扰某些浏览器应用的工作,如通信工具、电影或游戏。 -### Block Push API {#push} +### 拦截推送 API {#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. +无论浏览器是否活动,推送 API 都能让服务器发送讯息给网络应用。 因此,用户可能看到源自各网站的通知,甚至是在您浏览器隐藏到托盘或未启动的情况下。 开启此项以完全阻止浏览器的推送 API。 -### Block Location API {#location} +### 拦截定位 API {#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. +启用此选项将阻止浏览器发送可用于确定用户的位置、修改搜索结果或以其他方式影响用户的网络体验的 GPS 数据。 -### Block Flash {#flash} +### 拦截 Flash {#flash} -The Flash Player plugin has become increasingly vulnerable to such online threats as viruses and hackers; it may also significantly affect website loading time. 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. +Flash Player 插件越来越容易受到如病毒和黑客之类的在线威胁的影响;它还可能会显著影响网站的加载时间。 启用此设置后,AdGuard 将阻止浏览器检测允许 Flash 显示内容的组件(例如插件和 ActiveXObject 对象)。 这实际上意味着浏览器无法支持 Flash。 -### Block Java {#java} +### 拦截 Java {#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. +有些网站和 Web 服务仍然使用旧技术支持 Java 插件。 Java 插件 API 是 Java 插件的基础,存在严重的安全漏洞。 为安全起见,用户可以禁用此类插件。 尽管如此,即使用户决定使用「阻止 Java」选项,JavaScript 仍将启用。 ## 其它 {#miscellaneous} -### Hide Referer from third parties {#referer} +### 隐藏第三方 Referer {#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 是浏览器发送请求到服务器时所用的 HTTP 头部。 其包含请求源的 URL。 当您在各网页间导航时,Referer ​ ​会保存初始页的 URL。 托管目标网页的服务器通常具备解析 Referrer 的软件,并从中提取各种信息。 开启「*隐藏第三方 Referrer*」选项后,通过更改 HTTP 头部使第三方网站不可视当前网站。 -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. +您也可在 *Referer* ​ ​字段输入任意值以设置 Referer。 要使用默认 Referer,置空此字段即可。 -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. +请注意,要过滤流量,AdGuard 应用会“劫持”浏览器到服务器的请求。 对广告,跟踪和钓鱼网站的请求可在发送其请求到服务器之前更改或完全拦截。 「*隐藏第三方 Referer*」也是如此:AdGuard 拦截 HTTP(S) 请求,在启用该选项后软件删除或更改 Referer 标头。 但是,只有在这些请求“离开”浏览器后软件才开始拦截。 这意味着,如果在浏览器内监视 Referer(例如,借助 Chrome 浏览器的开发者工具),用户将看到原来的 Referer,因为请求尚未到达 AdGuard。 您可以使用 [Fiddler](https://www.telerik.com/fiddler) 等软件来确保 Referer 被正确更改。 -On the opposite, 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. +相反,由于所有浏览器扩展的性质,AdGuard 浏览器扩展在浏览器“内部”运行。 它将立即更改 Referer,因此开发工具将为用户的请求显示所需的 Referer。 -### Hide your User-Agent {#useragent} +### 隐藏 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. +当您访问网站时,浏览器会发送其信息给服务器。 其如一行文本,是以 "User-Agent:" 为开头作为 HTTP 请求的一部分。 其通常包括浏览器的名称和版本,以及操作系统和语言设置。 我们移除身份识别信息内的 User-Agent,以使广告商无法获取它。 -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. +您也可在自定义 User-Agent 字段输入任意值以设置 User-Agent。 要使用默认 User-Agent,置空此字段即可。 -### Hide your IP address {#ip} +### 隐藏 IP 地址 {#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. +隐身模式无法隐藏 IP 地址。 但该设置可以帮用户伪装地址,让您访问的网站认为您是一个代理。 有时这会有帮助,网站将忽略用户的真实 IP 地址。 -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. +用户可以设置任意 IP 地址,只需将其输入到相应的字段中即可,让其他人将其视为您的 IP 地址。 要使用默认 IP 地址,置空此字段即可。 -### Remove X-Client-Data header from HTTP requests {#xclientdata} +### 移除 HTTP 请求中的 X-Client-Data 头部 {#xclientdata} -It forbids Google Chrome from sending its version and modification information with requests to Google domains (including Double Click and Google Analytics). +禁止 Google Chrome 向 Google 域(包括 Double Click 和 Google Analytics)发送包含版本和修改信息的请求。 -### Protect from DPI {#dpi} +### 保护免受 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. +深度数据包检测(英语:Deep Packet Inspection,缩写成 DPI)是一种按数据包内容对流量进行深度分析和过滤以及统计数据积累的系统。 利用这项技术,互联网服务提供商能够控制流量传输及限制客户访问内容。 -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 可以修改传出数据包,使客户端不受 DPI 拦截标准限制。 这意味着通过启用此选项,用户可以访问他们想要的内容。 目前还不能绕过所有 DPI 系统,但我们不断努力改进。 -The "Protect from DPI" feature is already implemented in AdGuard for Windows, AdGuard for Mac, and AdGuard for Android. +Windows 版 AdGuard、Mac 版 AdGuard 和 Android 版 AdGuard 已经有「保护免受 DPI 影响」功能。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/userscripts.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/userscripts.md index d995b4576bb..fa062c4914c 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/userscripts.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/general/userscripts.md @@ -4,9 +4,9 @@ sidebar_position: 5 toc_max_heading_level: 4 --- -Userscripts (we also call them "extensions") are, de-facto, mini-programs written in JavaScript. They modify or extend the functionality of one or more websites. Many AdGuard users may be already familiar with such userscripts as AdGuard Assistant, Popup Blocker, and AdGuard Extra. +用户脚本(我们也称之为“扩展”)实质上是用 JavaScript 编写的小程序。 用户脚本修改或扩展一个或多个网站的功能。 许多 AdGuard 用户已经熟悉 AdGuard 助手、弹窗拦截器和 AdGuard Extra 等用户脚本。 -:::note Supported apps +:::note 支持的应用程序 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). diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md index ff3c7ae7b1e..e3920acb8c0 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-browser-extension/solving-problems/logs.md @@ -51,7 +51,11 @@ sidebar_position: 1 ## Sending logs -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/browser-extension.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: Now that you have collected the logs, please follow these steps to submit them to our development team: diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md index dbcf0a10773..95536eb9f29 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/har.md @@ -9,6 +9,12 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +HAR files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + ## What are HAR files? The HAR (HTTP ARchive) format is a JSON-formatted archive file for logging of a web browser's interaction with a site. The specifications of HAR format defines an archival data for HTTP transactions that used by a browser to export detailed information about web pages it loads. More detailed description of HAR file format and its specification you can find at [softwareishard.com](http://www.softwareishard.com/blog/har-12-spec/) website. diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md index 773deb565e5..daf395b8c53 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/log.md @@ -9,9 +9,19 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + In this article, we'll guide you through the process of collecting debug logs, an essential troubleshooting step for solving complex issues that may potentially arise. Debug logs provide detailed insight into the inner workings of AdGuard for Android. If the AdGuard support team asks you to provide debug logs, simply follow these instructions. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Collecting debug log diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md index 4ff85659f0b..5be1df9afa7 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-android/solving-problems/logcat.md @@ -9,8 +9,20 @@ This article is about AdGuard for Android, a multifunctional ad blocker that pro ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + Sometimes a regular log may not be sufficient to identify the origin of the problem. In such cases a system log is needed. Below are instructions on how to collect and get it: via Developer options and Logcat. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/android.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: + ## Capture a bug report from a device To get a bug report directly from your device, do the following: diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md index cf3ec56abaa..1874b6ee6c9 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-safari/solving-problems/logs.md @@ -19,7 +19,11 @@ To analyze and diagnose various problems that may occur with AdGuard for Safari, Now you can send this file to support@adguard.com or attach it to your bug report on GitHub. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/safari.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 1. Open the [AdGuard for Safari GitHub repo](https://github.com/AdguardTeam/AdGuardForSafari/issues) and click _New issue_. 2. Send the log file to devteam@adguard.com. Include the time of the bug and attach a link to your issue or its number (it appears as #number next to the title). diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md index 9254945111b..58facaff37a 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/features/settings.md @@ -25,12 +25,13 @@ At the very bottom of the screen you will find _Advanced Settings_. Changing som This is the main module of AdGuard for Windows that removes ads from the websites you visit and from the apps installed on your device. To filter out advertising and privacy-threatening content such as banners, pop-ups, or trackers AdGuard uses different filters: groups of rules with a similar purpose written with a [special syntax](/general/ad-filtering/create-own-filters). To understand what filters are and how they work read [this article](/general/ad-filtering/how-ad-blocking-works). -![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/ad-blocker.png) +![Ad Blocker \*mobile\_border](https://cdn.adtidy.org/content/kb/ad_blocker/windows/overview/settings_ad_blocker.png) In the Ad Blocker module you can: - enable automatic activation of language-specific filters, - disable [search ads and self-promotion](/general/ad-filtering/search-ads) blocking, +- disable ads in the Start menu on Windows 11, - activate pre-installed filters such as _AdGuard Base filter_, - install filters from the list or add a custom filter by clicking the _Add a filter_ button, - make changes to existing rule groups using the _Filter editor_ button, diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md index 784a03bcb96..95058d17d53 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/adguard-logs.md @@ -9,9 +9,19 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need AdGuard log files. These files contain records about errors and other events that occurr with the software. Below is the brief instruction describing the way to get the log files and send them to the support service if necessary. -> AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/en/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: ### Debug logs {#debug-logs} diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md index 144316f6056..d10cbac1a2d 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/dump-file.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in dump files are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To diagnose the reasons for potential problems that users might encounter while using AdGuard, the support team might need the process dump file. The dump file helps developers to see the processes that were executed in the application over a given period of time. Below you can check on the instructions of how to collect the dump file on your PC. 1. Press **Ctrl + Shift + Esc** and click **Task Manager** diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md index 510c96589e9..6c45a70da18 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/installation-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + If any problems occur during the installation of AdGuard, the support team might ask you to collect and send them AdGuard installation logs. In this case you need to: 1. Select *Run* command in Start menu or press *Win + R* on the keyboard. diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md index fab116f95fe..89743cc50a7 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/system-logs.md @@ -9,6 +9,12 @@ This article covers AdGuard for Windows, a multifunctional ad blocker that prote ::: +:::note + +Data and/or files provided in system logs are processed in accordance with [the AdGuard Privacy Policy](https://adguard.com/en/privacy.html). + +::: + To analyze and diagnose different problems that may potentially arise, the AdGuard support service might need Windows system log files. Windows event logs contain records about all errors that occurr with the installed software, including AdGuard. Below is the brief instruction describing the way to get the log files and to send them to our support service if necessary. 1. Press *Win + R* @@ -36,3 +42,9 @@ To analyze and diagnose different problems that may potentially arise, the AdGua - Choose a destination folder, enter the name, click *Save*. Select *Display information for the following languages*. You need to tick the box next to *English*. Click *OK*. Please send the two files that you've recently saved to **support@adguard.com**. + +:::note + +AdGuard is committed to protecting your privacy. We strictly follow our [Privacy Policy](https://adguard.com/privacy/windows.html) and do not collect any private information about users. Before sending your logs to the support team, please review the file as it may contain additional information that you don’t want to share. If it contains such personal information, we recommend that you delete it first. + +::: 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 15ca0fabbd1..8cb9606d7ec 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 @@ -352,7 +352,8 @@ or to the combination of these three: :::caution Restrictions - 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.*`. +- 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`. The rules which violate these restrictions are considered invalid. @@ -450,7 +451,7 @@ Safari does not support the simultaneous use of allowed and disallowed domains, :::info Compatibility -Rules with regular expressions in the `$domain` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +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. In AdGuard for Windows, Mac and Android with [CoreLibs][] v1.12 or later the `$domain` modifier can be alternatively spelled as `$from`. @@ -608,7 +609,7 @@ You may use a shorter name (alias) instead of using the full modifier name: `$3p :::caution Restrictions -[`$denyallow`](#denyallow-modifier) can not be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. +[`$denyallow`](#denyallow-modifier) cannot be used together with `$to`. It can be expressed with inverted `$to`: `$denyallow=a.com|b.com` is equivalent to `$to=~a.com|~b.com`. ::: @@ -924,7 +925,7 @@ Disables the Stealth Mode module for all corresponding pages and requests. $stealth [= opt1 [| opt2 [| opt3 [...]]]] ``` -`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. +`opt(i)` stand for certain Stealth Mode options disabled by the modifier. The modifier can contain any number of specific options (see below) or none. In the latter case the modifier disables all the Stealth Mode features. The list of the available modifier options: @@ -961,13 +962,14 @@ Blocking cookies and removing tracking parameters is achieved by using rules wit - Modifier options must be lowercase, i.e. `$stealth=DPI` will be rejected. - Modifier options cannot be negated, i.e. `$stealth=~3p-cookie` will be rejected. +- AdGuard Browser Extension supports only `searchqueries`, `donottrack`, `referrer`, `xclientdata`, `1p-cookie` and `3p-cookie` options. ::: :::info Compatibility -- Stealth Mode is available in AdGuard for Windows, Mac, and Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. -- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.10 or later. +- Stealth Mode is available in AdGuard for Windows, AdGuard for Mac, AdGuard for Android, and AdGuard Browser Extension. All other products will ignore the rules with `$stealth` modifier. +- Rules with `$stealth` modifier with specific options are supported by AdGuard for Windows, AdGuard for Mac, and AdGuard for Android with [CoreLibs][] v1.10 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: @@ -1072,36 +1074,36 @@ These modifiers are able to completely change the behavior of basic rules. -| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | -| ------------------------------------------- |:------------------------:|:-------------------------------:|:-----------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| -| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$permissions](#permissions-modifier) | ✅ | ⏳ | ⏳ | ❌ | ❌ | ❌ | -| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | -| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | -| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | -| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| Modifier \ Products | [CoreLibs apps][cl-apps] | [AdGuard for Chromium][ext-chr] | [AdGuard for Firefox][ext-ff] | [AdGuard for iOS][ios-app] | [AdGuard for Safari][ext-saf] | [AdGuard Content Blocker][and-cb] | +| ------------------------------------------- |:----------------------------------------:|:-------------------------------:|:----------------------------------------:|:--------------------------:|:-----------------------------:|:---------------------------------:| +| [$all](#all-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$badfilter](#badfilter-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$cookie](#cookie-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$csp](#csp-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$hls](#hls-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$inline-font](#inline-font-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$inline-script](#inline-script-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$jsonprune](#jsonprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$xmlprune](#xmlprune-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$network](#network-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$permissions](#permissions-modifier) | ✅ [*](#permissions-modifier-limitations) | 🧩 | 🧩 [*](#permissions-modifier-limitations) | ❌ | ❌ | ❌ | +| [$redirect](#redirect-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$redirect-rule](#redirect-rule-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$referrerpolicy](#referrerpolicy-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [$removeheader](#removeheader-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$removeparam](#removeparam-modifier) | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$replace](#replace-modifier) | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | +| [$urltransform](#urltransform-modifier) | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | +| [noop](#noop-modifier) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| [$empty 👎](#empty-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | +| [$mp4 👎](#mp4-modifier "deprecated") | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | :::note - ✅ — fully supported - ✅ * — supported, but reliability may vary or limitations may occur; check the modifier description for more details - -- ⏳ — feature that has been implemented or is planned to be implemented but is not yet available in any product +- 🧩 — may already be implemented in nightly or beta versions but is not yet supported in release versions + - ❌ — not supported - 👎 — deprecated; still supported but will be removed in the future @@ -1922,7 +1924,9 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** -`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped — see examples below. The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). +`$permissions` value syntax is similar to the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with one exception: comma that separates several features **MUST** be escaped. Pipe separator `|` instead of escaped comma is supported as well for better compatibility — see examples below. + +The list of the available directives is available [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#directives). `$permissions` value can be empty in the case of exception rules — see examples below. @@ -1932,7 +1936,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's - `@@||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` 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`. -- For better compatibility, we also support pipe-separated values for `$permissions` modifier: `$permissions=storage-access=()|camera=()`. +- `||example.org^$permissions=storage-access=()|camera=()` — for better compatibility, we also support pipe-separated values for `$permissions` modifier. - `@@||example.org^$document` or `@@||example.org^$urlblock` disables all the `$permission` rules on all the pages matching the rule pattern. :::note @@ -1947,6 +1951,8 @@ If there are multiple `$permissions` rules that match the same request, multiple ::: +##### `$permissions` modifier limitations {#permissions-modifier-limitations} + :::caution Limitations Firefox ignores the `Permissions-Policy` header. For more information, see [this issue](https://bugzilla.mozilla.org/show_bug.cgi?id=1694922). @@ -1956,13 +1962,14 @@ Firefox ignores the `Permissions-Policy` header. For more information, see [this :::caution Restrictions 1. Characters forbidden in the `$permissions` value: `$` -1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument` +1. `$permissions` is compatible with three types of modifiers: `$domain`, `$important`, and `$subdocument`. ::: :::info Compatibility -Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later. +- Rules with the `$permissions` modifier are supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.11 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. +- Pipe separator `|` instead of escaped comma is supported by AdGuard for Windows, Mac, and Android with [CoreLibs][] v1.14 or later, and AdGuard Browser Extension with [TSUrlFilter][] v3.0.0 or later. ::: From f8d06dcee6de69f7e6d356a925205fedac25809e Mon Sep 17 00:00:00 2001 From: Nikita Gorskikh Date: Fri, 26 Jul 2024 23:15:06 +0300 Subject: [PATCH 19/30] Make linter shut up --- docs/general/ad-filtering/create-own-filters.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index 76dde8a2d6f..a20b2770b72 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -1955,6 +1955,7 @@ For the requests matching a `$permissions` rule, AdGuard strengthens response's **Syntax** `$permissions` value syntax is identical to that of the `Permissions-Policy` header [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy) with the following exceptions: + 1. A comma that separates multiple features **MUST** be escaped — see examples below. 2. A pipe character (`|`) can be used to separate features instead of a comma. From 3d09a3a3a41d3bf57bb91a8fc0c45ea3f2ffded2 Mon Sep 17 00:00:00 2001 From: puglieri Date: Wed, 31 Jul 2024 09:52:38 -0300 Subject: [PATCH 20/30] Update outbound-proxy.md --- .../solving-problems/outbound-proxy.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/adguard-for-android/solving-problems/outbound-proxy.md b/docs/adguard-for-android/solving-problems/outbound-proxy.md index daf2b70c149..f7b3bd00302 100644 --- a/docs/adguard-for-android/solving-problems/outbound-proxy.md +++ b/docs/adguard-for-android/solving-problems/outbound-proxy.md @@ -89,17 +89,25 @@ In this article we give examples of how to set up some of the most popular proxi ### How to use AdGuard with NordVPN -1. Open AdGuard and go to **Settings** → **Filtering** → **Network** → **Proxy** → **Proxy server**. +1. Log in to Your NordVPN Account. -1. Tap the **Add proxy server** button and enter the following data: +1. Go to **Services** → **NordVPN** → **Manual setup** and set up your service credentials manually. + +1. You will receive a verification code on the email you use for NordVPN. As requested, use it on your NordVPN account, then click *Apply* and *OK* to save the changes. + +![Manual Setup](https://cdn.adtidy.org/content/kb/ad_blocker/android/solving_problems/outbound-proxy/nordvpn-manual-setup.png) + +1. Open the AdGuard app, go to **Settings** → **Filtering** → **Network** → **Proxy** → **Proxy server** → **Add proxy server**. + +1. Enter the following data: Field | Value ------- | --------- Proxy type | *SOCKS5* - Proxy host | *any server from [this list](https://support.nordvpn.com/hc/en-us/articles/20195967385745-NordVPN-proxy-setup-for-qBittorrent)* + Proxy host | Any server from [this list](https://support.nordvpn.com/hc/en-us/articles/20195967385745-NordVPN-proxy-setup-for-qBittorrent) Proxy port | *1080* -1. For **Username** and **Password** fields, enter your NordVPN Username and Password. +1. In the **Username/Password** fields, enter your NordVPN credentials. 1. Tap **Save and select**. From 09982ca4f96c58a065123ad2a82dc5d09e577c10 Mon Sep 17 00:00:00 2001 From: puglieri Date: Thu, 1 Aug 2024 13:01:34 -0300 Subject: [PATCH 21/30] Update userscripts.md --- docs/general/userscripts.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/general/userscripts.md b/docs/general/userscripts.md index 40fb396d927..efc75a8efd6 100644 --- a/docs/general/userscripts.md +++ b/docs/general/userscripts.md @@ -64,13 +64,13 @@ As userscripts are mainly created by enthusiasts, you should be cautious when in Here we will describe some of the most popular userscript catalogs. -### Stylish (userstyles.org) +### Userscript.Zone -[Userstyles.org](https://userstyles.org/) is a catalog of user styles, but it allows you to load them as userscripts. Thus, any user style can be installed via AdGuard. Be careful if you decide to install an unpopular script — there's a risk it might be harmful. +[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 credibility, since only scripts from moderated pages are displayed. ### Greasy Fork -[Greasy Fork](https://greasyfork.org/) is a userscript catalog by Stylish creators. Unlike the above-mentioned userstyles.org, the scripts in this catalog undergo moderation, so their credibility is much higher. +[Greasy Fork](https://greasyfork.org/) is a userscript catalog by Stylish creators. The scripts in this catalog undergo moderation, so their credibility is much higher. ### OpenUserJS.org From d119edacd958b36b3ea3d2e84d67770e52ffae25 Mon Sep 17 00:00:00 2001 From: puglieri Date: Fri, 2 Aug 2024 09:54:46 -0300 Subject: [PATCH 22/30] Update outbound-proxy.md --- .../solving-problems/outbound-proxy.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/adguard-for-android/solving-problems/outbound-proxy.md b/docs/adguard-for-android/solving-problems/outbound-proxy.md index f7b3bd00302..bcdcd6ea22a 100644 --- a/docs/adguard-for-android/solving-problems/outbound-proxy.md +++ b/docs/adguard-for-android/solving-problems/outbound-proxy.md @@ -89,13 +89,13 @@ In this article we give examples of how to set up some of the most popular proxi ### How to use AdGuard with NordVPN -1. Log in to Your NordVPN Account. +1. Log in to your NordVPN account. 1. Go to **Services** → **NordVPN** → **Manual setup** and set up your service credentials manually. -1. You will receive a verification code on the email you use for NordVPN. As requested, use it on your NordVPN account, then click *Apply* and *OK* to save the changes. +1. You will receive a verification code on the email address you use for NordVPN. Use it on your NordVPN account as requested, then click *Apply* and *OK* to save the changes. -![Manual Setup](https://cdn.adtidy.org/content/kb/ad_blocker/android/solving_problems/outbound-proxy/nordvpn-manual-setup.png) +![Manual setup](https://cdn.adtidy.org/content/kb/ad_blocker/android/solving_problems/outbound-proxy/nordvpn-manual-setup.png) 1. Open the AdGuard app, go to **Settings** → **Filtering** → **Network** → **Proxy** → **Proxy server** → **Add proxy server**. @@ -107,7 +107,7 @@ In this article we give examples of how to set up some of the most popular proxi Proxy host | Any server from [this list](https://support.nordvpn.com/hc/en-us/articles/20195967385745-NordVPN-proxy-setup-for-qBittorrent) Proxy port | *1080* -1. In the **Username/Password** fields, enter your NordVPN credentials. +1. Enter your NordVPN credentials in the **Username** and **Password** fields. 1. Tap **Save and select**. From 934c2a5c7f82f45a178bbdd4812f73072e77c0aa Mon Sep 17 00:00:00 2001 From: puglieri Date: Mon, 5 Aug 2024 06:13:01 -0300 Subject: [PATCH 23/30] Update outbound-proxy.md --- docs/adguard-for-android/solving-problems/outbound-proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/outbound-proxy.md b/docs/adguard-for-android/solving-problems/outbound-proxy.md index bcdcd6ea22a..88582229d0f 100644 --- a/docs/adguard-for-android/solving-problems/outbound-proxy.md +++ b/docs/adguard-for-android/solving-problems/outbound-proxy.md @@ -93,7 +93,7 @@ In this article we give examples of how to set up some of the most popular proxi 1. Go to **Services** → **NordVPN** → **Manual setup** and set up your service credentials manually. -1. You will receive a verification code on the email address you use for NordVPN. Use it on your NordVPN account as requested, then click *Apply* and *OK* to save the changes. +1. You will receive a verification code on the email address you use for NordVPN. Use it on your NordVPN account as requested, then tap *Apply* and *OK* to save the changes. ![Manual setup](https://cdn.adtidy.org/content/kb/ad_blocker/android/solving_problems/outbound-proxy/nordvpn-manual-setup.png) From 4b10c787452f0a10ef8a7fde9bf616f5c06df79f Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Mon, 5 Aug 2024 19:21:30 +0800 Subject: [PATCH 24/30] Update background-work.md --- .../solving-problems/background-work.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index b16e99016bf..5faf912cf88 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -27,7 +27,21 @@ Alternatively, instead of unchecking **Auto-deny apps from auto starting** entir Xiaomi (and especially MIUI) devices are among the most troublesome ones when it comes to background work. They are known to limit background processes and have non-standard permissions with a lack of proper documentation to top it off. Sometimes apps just don't work right on Xiaomi phones and there's little that can be done about that. Below are some actions you might attempt to perform if you run into any trouble regarding AdGuard's background work on various Xiaomi devices. -### MIUI 12.0.8+ +### MIUI 13+ and HyperOS + +There are two options to change the battery optimization settings on your phone and block ads more efficiently. + +Option 1 + +Firstly, in **Settings** → **Apps** → **Permissions** procced to the **Background autostart** option and allow AdGuard to work in the background. Secondly, please go to **Manage apps** section, choose **AdGuard** and uncheck **Pause app activitty if unused**. The last step is to go to **Battery saver** and tap **No restrictions**. + +Option 2 + +Choose **Settings** → **Apps** → **Manage apps** → **AdGuard**. Make sure you enable **Autostart**. After, go to **Battery saver** and tap **No restrictions**. + +All done! You are successfully set up AdGuard to work in a background. + +### MIUI 12.0.8 To let your AdGuard app run successfully in the background, do the following: From 16975cccec535f898cd77e7743727980765cd818 Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Mon, 5 Aug 2024 19:23:58 +0800 Subject: [PATCH 25/30] Update background-work.md --- docs/adguard-for-android/solving-problems/background-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index 5faf912cf88..3dbccc4ecd2 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -33,7 +33,7 @@ There are two options to change the battery optimization settings on your phone Option 1 -Firstly, in **Settings** → **Apps** → **Permissions** procced to the **Background autostart** option and allow AdGuard to work in the background. Secondly, please go to **Manage apps** section, choose **AdGuard** and uncheck **Pause app activitty if unused**. The last step is to go to **Battery saver** and tap **No restrictions**. +Firstly, in **Settings** → **Apps** → **Permissions** procced to the **Background autostart** option and allow AdGuard to work in the background. Secondly, please go to **Manage apps** section, choose **AdGuard** and uncheck **Pause app activitty if unused**. The last step is to go to **Battery saver** and tap **No restrictions**. Option 2 From 95747486609ae5c6b736bfd039b70ba603af0d1d Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Tue, 6 Aug 2024 23:42:06 +0800 Subject: [PATCH 26/30] Update background-work.md --- .../solving-problems/background-work.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index 3dbccc4ecd2..4dc6e110e2c 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -29,17 +29,23 @@ Xiaomi (and especially MIUI) devices are among the most troublesome ones when it ### MIUI 13+ and HyperOS -There are two options to change the battery optimization settings on your phone and block ads more efficiently. +There are two ways to change the battery optimization settings on your phone and block ads more efficiently. Option 1 -Firstly, in **Settings** → **Apps** → **Permissions** procced to the **Background autostart** option and allow AdGuard to work in the background. Secondly, please go to **Manage apps** section, choose **AdGuard** and uncheck **Pause app activitty if unused**. The last step is to go to **Battery saver** and tap **No restrictions**. +1. Go to **Settings** → **Apps** → **Permissions** → **Background autostart** and allow AdGuard to run in the background + +1. Return to **Settings** → **Apps** → **Manage apps** → **AdGuard** and uncheck **Pause app activity if unused** + +1. Go to **Battery saver** and tap **No restrictions** Option 2 -Choose **Settings** → **Apps** → **Manage apps** → **AdGuard**. Make sure you enable **Autostart**. After, go to **Battery saver** and tap **No restrictions**. +1. Go to **Settings** → **Apps** → **Manage apps** → **AdGuard** and enable **Autostart** + +1. Go to **Battery saver** and tap **No restrictions** -All done! You are successfully set up AdGuard to work in a background. +Done! You have successfully set up AdGuard to work in the background. ### MIUI 12.0.8 From 4b181d111a53c521ac0cc48196d87b89e99c7d30 Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Thu, 8 Aug 2024 17:14:15 +0800 Subject: [PATCH 27/30] added info about MIUI and HyperOS version --- docs/adguard-for-android/solving-problems/background-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index 4dc6e110e2c..df1befaa67a 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -29,7 +29,7 @@ Xiaomi (and especially MIUI) devices are among the most troublesome ones when it ### MIUI 13+ and HyperOS -There are two ways to change the battery optimization settings on your phone and block ads more efficiently. +Depending on the MIUI and HyperOS version there are two ways to change the battery optimization settings on your phone and block ads more efficiently. You can choose one of the following options. Option 1 From 748419418365fd6f77c22b7dd6d68e862ef016f2 Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Thu, 8 Aug 2024 17:31:29 +0800 Subject: [PATCH 28/30] versions --- docs/adguard-for-android/solving-problems/background-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index df1befaa67a..da93e757ae3 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -29,7 +29,7 @@ Xiaomi (and especially MIUI) devices are among the most troublesome ones when it ### MIUI 13+ and HyperOS -Depending on the MIUI and HyperOS version there are two ways to change the battery optimization settings on your phone and block ads more efficiently. You can choose one of the following options. +Depending on the MIUI and HyperOS versions there are two ways to change the battery optimization settings on your phone and block ads more efficiently. You can choose one of the following options. Option 1 From 7139d30bd698742c456c1b813a07d8c2ed61d63c Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Thu, 8 Aug 2024 17:36:46 +0800 Subject: [PATCH 29/30] Update background-work.md --- docs/adguard-for-android/solving-problems/background-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index da93e757ae3..b55c2fe3f64 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -29,7 +29,7 @@ Xiaomi (and especially MIUI) devices are among the most troublesome ones when it ### MIUI 13+ and HyperOS -Depending on the MIUI and HyperOS versions there are two ways to change the battery optimization settings on your phone and block ads more efficiently. You can choose one of the following options. +Depending on the MIUI and HyperOS versions there are two ways to change the battery optimization settings on your phone and block ads more efficiently. Option 1 From 9d0d629f959bee2b2436f81e60df248f6ebe6b2a Mon Sep 17 00:00:00 2001 From: Dasha_Bugayova Date: Thu, 8 Aug 2024 17:37:42 +0800 Subject: [PATCH 30/30] Update background-work.md --- docs/adguard-for-android/solving-problems/background-work.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adguard-for-android/solving-problems/background-work.md b/docs/adguard-for-android/solving-problems/background-work.md index b55c2fe3f64..1647f69f8f1 100644 --- a/docs/adguard-for-android/solving-problems/background-work.md +++ b/docs/adguard-for-android/solving-problems/background-work.md @@ -29,7 +29,7 @@ Xiaomi (and especially MIUI) devices are among the most troublesome ones when it ### MIUI 13+ and HyperOS -Depending on the MIUI and HyperOS versions there are two ways to change the battery optimization settings on your phone and block ads more efficiently. +Depending on the MIUI and HyperOS versions there are two ways to change the battery optimization settings on your phone and block ads more efficiently. Option 1