You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The _allowlist_can be inverted, too: you can unblock ads everywhere except on the websites added to this list. To do that, activate the _Invert allowlist_ option.
54
+
_Allowlist_can also be inverted: you can unblock ads everywhere except on the websites added to this list. To do that, activate the _Invert Allowlist_ option. Before it turns on, a confirmation dialog will appear to prevent accidental activation and explain what will happen.
Copy file name to clipboardExpand all lines: i18n/be/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/other-features.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,19 +13,21 @@ Apart from the large key modules of AdGuard Browser Extension, there are several
13
13
14
14
## General {#general}
15
15
16
-
In the _General_ tab, you can allow search ads and the [self-promotion of websites](/general/ad-filtering/search-ads), enable the automatic activation of language-specific filters, indicate the filters' update interval, etc.
16
+
The _General_ tab contains the main extension settings and lets you control its basic filtering behavior. Here you can allow search ads and [self‑promotion on websites](/general/ad-filtering/search-ads/), enable automatic activation of language-specific filters, set the update interval for the filters, and turn on [protection against phishing and malicious websites](/general/browsing-security/).
Besides, here you can enable [_Phishing and malware protection_](/general/browsing-security).
20
+
You can also save your current configuration and quickly apply it to another browser or device. To do this, click _Share settings_ in the _General_ tab: the extension will generate a special link and a QR code that contain your current settings. You can either copy the link and open it in a browser, or scan the QR code on a device with AdGuard to open the link directly in the app. You will then see a prompt to apply the shared configuration so that you can restore the same setup after reinstalling your browser or on a new device.
21
21
22
-
You can save your settings configuration by clicking the _Export settings_ button. The settings will be saved as a .json file. To import the previously saved settings configuration, use the _Import settings_ function. You can even use it to quickly switch between different settings profiles or even to transfer settings configurations between different browsers.
22
+
If needed, you can also share this link with other people or attach it to a support request so the team can see your exact configuration.
23
+
24
+
In addition, you can still export your settings to a .json file by clicking _Export settings_ and import them via the _Import settings_ option. This makes it easy to switch between different configuration profiles or move them between browsers.
23
25
24
26
## Additional settings {#misc}
25
27
26
28
The _Additional settings_ section contains a range of various settings that are related to the ad blocking process and application usability.
From this tab, you can invert the allowlist and add the AdGuard item to the browser’s context menu. You can also enable the display of the number of blocked ads on the AdGuard icon and notifications about extension updates. Additionally, this section lets you enable notifications about the AdGuard app, open the _Filtering log_, clear the statistics of blocked ads and trackers, or reset the settings.
31
33
@@ -43,4 +45,4 @@ The _Send anonymized usage data_ option can also be enabled on the post-installa
43
45
44
46
In the _About_ section, you can find info about the current version, links to the EULA and Privacy policy, and to the repository of the Browser extension on GitHub.
Copy file name to clipboardExpand all lines: i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows-8/adguard-for-windows-8.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,15 @@ This article describes AdGuard for Windows v8.0, a comprehensive ad blocker that
11
11
12
12
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.
On the Home screen, you’ll find a toggle to enable or disable AdGuard protection, as well as icons for _Ad blocking_, _Tracking protection_, _DNS protection_, and _Annoyance blocking_. Main settings can be accessed through the left-side menu.
Copy file name to clipboardExpand all lines: i18n/be/docusaurus-plugin-content-docs/current/adguard-for-windows/solving-problems/low-level-settings.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,13 +107,17 @@ This option should be enabled **only for debugging purposes**. Ticking the check
107
107
108
108
Adds extra space between the HTTP method and the URL and removes space after the "Host:" field to avoid deep packet inspection. For instance, the request
109
109
110
-
`GET /foo/bar/ HTTP/1.1
111
-
Host: example.org`
110
+
```text
111
+
GET /foo/bar/ HTTP/1.1
112
+
Host: example.org
113
+
```
112
114
113
115
will be converted to
114
116
115
-
`GET /foo/bar/ HTTP/1.1
116
-
Host:example.org`
117
+
```text
118
+
GET /foo/bar/ HTTP/1.1
119
+
Host:example.org
120
+
```
117
121
118
122
This option is only applied when the *Protect from DPI* Stealth mode option is enabled.
Copy file name to clipboardExpand all lines: i18n/be/docusaurus-plugin-content-docs/current/general/ad-filtering/create-own-filters.md
+52-14Lines changed: 52 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2671,8 +2671,7 @@ With these rules, specified UTM parameters will be removed from any request save
2671
2671
[AdGuard for Chrome MV3][ext-mv3] has some limitations:
2672
2672
2673
2673
- Regular expressions, negation and allowlist rules are not supported.
2674
-
- Generic rules are applied before specific rules, and redirection occurs only once. This may prevent subsequent or more specific redirects from applying.
2675
-
- Group of similar `$removeparam` rules will be combined into one. Example:
2674
+
- Each `$removeparam` rule with a named parameter gets its own declarative rule with a param-aware `urlFilter` (e.g. `^utm_source=`). Chrome DNR applies a redirect only once per navigation, so without this, only the highest-priority rule would fire and the rest would be skipped. The param-aware `urlFilter` makes each rule fire only when its target parameter is present, forming a redirect chain — one parameter stripped per hop — until all are removed. Chrome allows up to 20 hops per navigation, which is enough for real-world tracking URLs. These hops are invisible to users. Example:
@@ -2693,20 +2692,59 @@ With these rules, specified UTM parameters will be removed from any request save
2693
2692
"transform": {
2694
2693
"queryTransform": {
2695
2694
"removeParams": [
2696
-
"p1case1",
2697
-
"p2case1",
2695
+
"p1case1"
2696
+
]
2697
+
}
2698
+
}
2699
+
}
2700
+
},
2701
+
"condition": {
2702
+
"urlFilter": "||testcases.adguard.com*^p1case1=",
2703
+
"resourceTypes": [
2704
+
"xmlhttprequest"
2705
+
]
2706
+
}
2707
+
},
2708
+
{
2709
+
"id": 2,
2710
+
"action": {
2711
+
"type": "redirect",
2712
+
"redirect": {
2713
+
"transform": {
2714
+
"queryTransform": {
2715
+
"removeParams": [
2716
+
"p2case1"
2717
+
]
2718
+
}
2719
+
}
2720
+
}
2721
+
},
2722
+
"condition": {
2723
+
"urlFilter": "||testcases.adguard.com*^p2case1=",
2724
+
"resourceTypes": [
2725
+
"xmlhttprequest"
2726
+
]
2727
+
}
2728
+
},
2729
+
{
2730
+
"id": 3,
2731
+
"action": {
2732
+
"type": "redirect",
2733
+
"redirect": {
2734
+
"transform": {
2735
+
"queryTransform": {
2736
+
"removeParams": [
2698
2737
"P3Case1"
2699
2738
]
2700
2739
}
2701
2740
}
2702
2741
}
2703
2742
},
2704
2743
"condition": {
2705
-
"urlFilter": "||testcases.adguard.com",
2744
+
"urlFilter": "||testcases.adguard.com*^P3Case1=",
2706
2745
"resourceTypes": [
2707
2746
"xmlhttprequest"
2708
-
],
2709
-
"isUrlFilterCaseSensitive": false
2747
+
]
2710
2748
}
2711
2749
},
2712
2750
{
@@ -2724,10 +2762,10 @@ With these rules, specified UTM parameters will be removed from any request save
2724
2762
}
2725
2763
},
2726
2764
"condition": {
2765
+
"urlFilter": "^p1case2=",
2727
2766
"resourceTypes": [
2728
2767
"xmlhttprequest"
2729
-
],
2730
-
"isUrlFilterCaseSensitive": false
2768
+
]
2731
2769
}
2732
2770
}
2733
2771
]
@@ -4700,7 +4738,7 @@ Path-in-domain syntax works with all types of cosmetic rules (`##`, `#@#`, `#$#`
4700
4738
4701
4739
:::info Compatibility
4702
4740
4703
-
Path-in-domain syntax has been introduced in [CoreLibs][] v1.20.
4741
+
Path-in-domain syntax has been introduced in [CoreLibs][] v1.20, Browser extension v5.4.
4704
4742
4705
4743
:::
4706
4744
@@ -5026,9 +5064,9 @@ Used to specify the platforms to apply the rules. List of existing platforms and
5026
5064
5027
5065
- `cli` — AdGuard for Linux — [https://filters.adtidy.org/cli/filters/2.txt](https://filters.adtidy.org/cli/filters/2.txt)
5028
5066
5029
-
- `android` — AdGuard for Android — [https://filters.adtidy.org/android/filters/2.txt](https://filters.adtidy.org/android/filters/2.txt)
5067
+
- `android` — AdGuard for Android — [https://filters.adtidy.org/android/filters/2_optimized.txt](https://filters.adtidy.org/android/filters/2_optimized.txt)
5030
5068
5031
-
- `ios` — AdGuard for iOS — [https://filters.adtidy.org/ios/filters/2.txt](https://filters.adtidy.org/ios/filters/2.txt)
5069
+
- `ios` — AdGuard for iOS — [https://filters.adtidy.org/ios/filters/2_optimized.txt](https://filters.adtidy.org/ios/filters/2_optimized.txt)
5032
5070
5033
5071
- `ext_chromium` — AdGuard Browser Extension for Chrome — [https://filters.adtidy.org/extension/chromium/filters/2.txt](https://filters.adtidy.org/extension/chromium/filters/2.txt)
5034
5072
@@ -5040,9 +5078,9 @@ Used to specify the platforms to apply the rules. List of existing platforms and
5040
5078
5041
5079
- `ext_opera` — AdGuard Browser Extension for Opera — [https://filters.adtidy.org/extension/opera/filters/2.txt](https://filters.adtidy.org/extension/opera/filters/2.txt)
5042
5080
5043
-
- `ext_safari` — AdGuard for Safari — [https://filters.adtidy.org/extension/safari/filters/2.txt](https://filters.adtidy.org/extension/safari/filters/2.txt)
5081
+
- `ext_safari` — AdGuard for Safari — [https://filters.adtidy.org/extension/safari/filters/2_optimized.txt](https://filters.adtidy.org/extension/safari/filters/2_optimized.txt)
The _allowlist_can be inverted, too: you can unblock ads everywhere except on the websites added to this list. To do that, activate the _Invert allowlist_ option.
54
+
_Allowlist_can also be inverted: you can unblock ads everywhere except on the websites added to this list. To do that, activate the _Invert Allowlist_ option. Before it turns on, a confirmation dialog will appear to prevent accidental activation and explain what will happen.
Copy file name to clipboardExpand all lines: i18n/bn/docusaurus-plugin-content-docs/current/adguard-browser-extension/features/other-features.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,19 +13,21 @@ Apart from the large key modules of AdGuard Browser Extension, there are several
13
13
14
14
## General {#general}
15
15
16
-
In the _General_ tab, you can allow search ads and the [self-promotion of websites](/general/ad-filtering/search-ads), enable the automatic activation of language-specific filters, indicate the filters' update interval, etc.
16
+
The _General_ tab contains the main extension settings and lets you control its basic filtering behavior. Here you can allow search ads and [self‑promotion on websites](/general/ad-filtering/search-ads/), enable automatic activation of language-specific filters, set the update interval for the filters, and turn on [protection against phishing and malicious websites](/general/browsing-security/).
Besides, here you can enable [_Phishing and malware protection_](/general/browsing-security).
20
+
You can also save your current configuration and quickly apply it to another browser or device. To do this, click _Share settings_ in the _General_ tab: the extension will generate a special link and a QR code that contain your current settings. You can either copy the link and open it in a browser, or scan the QR code on a device with AdGuard to open the link directly in the app. You will then see a prompt to apply the shared configuration so that you can restore the same setup after reinstalling your browser or on a new device.
21
21
22
-
You can save your settings configuration by clicking the _Export settings_ button. The settings will be saved as a .json file. To import the previously saved settings configuration, use the _Import settings_ function. You can even use it to quickly switch between different settings profiles or even to transfer settings configurations between different browsers.
22
+
If needed, you can also share this link with other people or attach it to a support request so the team can see your exact configuration.
23
+
24
+
In addition, you can still export your settings to a .json file by clicking _Export settings_ and import them via the _Import settings_ option. This makes it easy to switch between different configuration profiles or move them between browsers.
23
25
24
26
## Additional settings {#misc}
25
27
26
28
The _Additional settings_ section contains a range of various settings that are related to the ad blocking process and application usability.
From this tab, you can invert the allowlist and add the AdGuard item to the browser’s context menu. You can also enable the display of the number of blocked ads on the AdGuard icon and notifications about extension updates. Additionally, this section lets you enable notifications about the AdGuard app, open the _Filtering log_, clear the statistics of blocked ads and trackers, or reset the settings.
31
33
@@ -43,4 +45,4 @@ The _Send anonymized usage data_ option can also be enabled on the post-installa
43
45
44
46
In the _About_ section, you can find info about the current version, links to the EULA and Privacy policy, and to the repository of the Browser extension on GitHub.
0 commit comments