2 SPDX-License-Identifier: GPL-3.0-or-later
3 SPDX-FileCopyrightText: 2018, 2020, 2022-2023, 2025 Soren Stoutner <soren@stoutner.com>
5 Translation 2023 Xin. Copyright assigned to Soren Stoutner <soren@stoutner.com>.
7 This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android/>.
9 This program is free software: you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free Software
11 Foundation, either version 3 of the License, or (at your option) any later
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19 You should have received a copy of the GNU General Public License along with
20 this program. If not, see <https://www.gnu.org/licenses/>. -->
24 <meta charset="UTF-8">
25 <title>Requests</title>
27 <link rel="stylesheet" href="../css/theme.css">
29 <!-- Setting the color scheme instructs the WebView to respect `prefers-color-scheme` @media CSS. -->
30 <meta name="color-scheme" content="light dark">
34 <h3><svg class="header"><use href="../shared_images/local_activity.svg#icon"/></svg> 响应请求</h3>
36 <p>当一个链接加载,会对CCS,JavaScript,图片,和其他东西产生一个标志性的数字,这些请求的详细内容可以在请求活动中查看。导航栏显示链接请求数和被拒绝的请求数,点击请求来获得他为什么被拒绝或允许。</p>
38 <img class="center" src="images/request_details.png" alt="Request Details"/>
40 <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>:
41 EasyList, EasyPrivacy, Fanboy’s Annoyance List, and Fanboy’s Social Blocking List.
42 These filter lists are processed by Privacy Browser into the following 22 sublists, which check resource requests in the order listed.</p>
45 <li>Main Allow List</li>
46 <li>Final Allow List</li>
47 <li>Domain Allow List</li>
48 <li>Domain Initial Allow List</li>
49 <li>Domain Final Allow List</li>
50 <li>Third-Party Allow List</li>
51 <li>Third-Party Domain Allow List</li>
52 <li>Third-Party Domain Initial Allow List</li>
53 <li>Main Block List</li>
54 <li>Initial Block List</li>
55 <li>Final Block List</li>
56 <li>Domain Block List</li>
57 <li>Domain Initial Block List</li>
58 <li>Domain Final Block List</li>
59 <li>Domain Regular Expression Block List</li>
60 <li>Third-Party Block List</li>
61 <li>Third-Party Initial Block List</li>
62 <li>Third-Party Domain Block List</li>
63 <li>Third-Party Domain Initial Block List</li>
64 <li>Third-Party Regular Expression Block List</li>
65 <li>Third-Party Domain Regular Expression Block List</li>
66 <li>Regular Expression Block List</li>
69 <p>初始列表检查 URL 的开头。最终列表检查 URL 的末尾。域列表仅检查某些域。第三方列表仅在请求的根域与主 URL 的根域不同时才适用。正则表达式列表遵循<a href="https://en.wikipedia.org/wiki/Regular_expression">正则表达式语法</a>。
70 每个子列表项都有一个或多个条目。在域子列表的情况下,如果第一个条目与主 URL 的域匹配,则仅根据项目检查资源请求。</p>
72 <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.
73 This can sometimes lead to false positives, where resources are allowed or blocked in ways that weren’t intended by the original entry.
74 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 <p>Privacy Browser has three additional filter lists.
77 <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/ultralist/">UltraList</a> and
78 <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/ultraprivacy/">UltraPrivacy</a>
79 filters ads and trackers that EasyList and EasyPrivacy do not. The third blocks all third-party requests.
80 A request is only considered third-party if the base domain of the request is different than the base domain of the URL.
81 For example, if <code>www.website.com</code> loads a picture from <code>images.website.com</code>,
82 this is not blocked as a third-party request because they both share the same base domain of <code>website.com</code>.
83 Blocking all third-party requests increases privacy, but this filter list is disabled by default because it breaks a large number of websites.</p>