]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/assets/ru/guide_requests.html
7533709d616e95c6fe9ce8af0ad6f2a77be3b530
[PrivacyBrowserAndroid.git] / app / src / main / assets / ru / guide_requests.html
1 <!--
2   Copyright 2018-2020,2022-2023 Soren Stoutner <soren@stoutner.com>.
3
4   This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
5
6   Privacy Browser Android is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Privacy Browser Android is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>. -->
18
19 <html>
20     <head>
21         <meta charset="UTF-8">
22
23         <link rel="stylesheet" href="../css/theme.css">
24
25         <!-- Setting the color scheme instructs the WebView to respect `prefers-color-scheme` @media CSS. -->
26         <meta name="color-scheme" content="light dark">
27     </head>
28
29     <body>
30         <h3><svg class="header"><use href="../shared_images/local_activity.svg#icon"/></svg> Запросы ресурсов</h3>
31
32         <p>При загрузке URL-адреса обычно происходит ряд запросов ресурсов для CCS, JavaScript, изображений и других файлов. Сведения об этих запросах можно просмотреть в активности запросов.
33             В навигационном меню имеется ссылка на активность запросов, а также показано, сколько запросов было заблокировано.
34             При нажатии на запрос отображаются сведения о том, почему он был разрешен или заблокирован.</p>
35
36         <img class="center" src="images/request_details.png"/>
37
38         <p>Privacy Browser includes four <a href="https://easylist.to/">common filter lists</a> based on the <a href="https://adblockplus.org/filters">Adblock syntax</a>:
39             EasyList, EasyPrivacy, Fanboy’s Annoyance List, and Fanboy’s Social Blocking List.
40             These filter lists are processed by Privacy Browser into the following 22 sublists, which check resource requests in the order listed.</p>
41
42         <ol>
43             <li>Main Allow List</li>
44             <li>Final Allow List</li>
45             <li>Domain Allow List</li>
46             <li>Domain Initial Allow List</li>
47             <li>Domain Final Allow List</li>
48             <li>Third-Party Allow List</li>
49             <li>Third-Party Domain Allow List</li>
50             <li>Third-Party Domain Initial Allow List</li>
51             <li>Main Block List</li>
52             <li>Initial Block List</li>
53             <li>Final Block List</li>
54             <li>Domain Block List</li>
55             <li>Domain Initial Block List</li>
56             <li>Domain Final Block List</li>
57             <li>Domain Regular Expression Block List</li>
58             <li>Third-Party Block List</li>
59             <li>Third-Party Initial Block List</li>
60             <li>Third-Party Domain Block List</li>
61             <li>Third-Party Domain Initial Block List</li>
62             <li>Third-Party Regular Expression Block List</li>
63             <li>Third-Party Domain Regular Expression Block List</li>
64             <li>Regular Expression Block List</li>
65         </ol>
66
67         <p>Исходные списки проверяются на начало URL-адреса. Окончательные списки проверяются на конец URL-адреса. Списки доменов проверяют только определенные домены.
68             Сторонние списки применяются только в том случае, если корневой домен запроса отличается от корневого домена основного URL-адреса.
69             Списки регулярных выражений следуют за <a href="https://ru.wikipedia.org/wiki/Регулярные_выражения">синтаксисом регулярных выражений</a>.
70             Каждый элемент подсписка имеет одну или несколько записей.
71             В случае подсписков домена, запрос ресурса проверяется только в отношении элемента, если первая запись соответствует домену основного URL-адреса.</p>
72
73         <p>Because of limitations in Android’s WebView, and to speed up processing of requests, Privacy Browser implements a simplified interpretation of the Adblock syntax.
74             This can sometimes lead to false positives, where resources are allowed or blocked in ways that weren’t intended by the original entry.
75             A more detailed description of how the filter list entries are processed is available at <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/">stoutner.com</a>.</p>
76
77         <p>Privacy Browser has three additional filter lists.
78             <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/ultralist/">UltraList</a> and
79             <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/ultraprivacy/">UltraPrivacy</a>
80             filters ads and trackers that EasyList and EasyPrivacy do not. The third blocks all third-party requests.
81             A request is only considered third-party if the base domain of the request is different than the base domain of the URL.
82             For example, if <code>www.website.com</code> loads a picture from <code>images.website.com</code>,
83             this is not blocked as a third-party request because they both share the same base domain of <code>website.com</code>.
84             Blocking all third-party requests increases privacy, but this filter list is disabled by default because it breaks a large number of websites.</p>
85     </body>
86 </html>