]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/assets/de/guide_requests.html
First wrong button text in View Headers in night theme. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / assets / de / guide_requests.html
1 <!--
2   Copyright 2018-2020,2022-2023 Soren Stoutner <soren@stoutner.com>.
3
4   Translation 2019 Bernhard G. Keller.  Copyright assigned to Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
7
8   Privacy Browser Android is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser Android is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <html>
22     <head>
23         <meta charset="UTF-8">
24
25         <link rel="stylesheet" href="../css/theme.css">
26
27         <!-- Setting the color scheme instructs the WebView to respect `prefers-color-scheme` @media CSS. -->
28         <meta name="color-scheme" content="light dark">
29     </head>
30
31     <body>
32         <h3><svg class="header"><use href="../shared_images/local_activity.svg#icon"/></svg> Resourcen-Zugriffe</h3>
33
34         <p>Wenn eine URL geladen wird, wird üblicherweise eine Menge Anfragen für mit der Seite verbundene Ressourcen wie Bilder, CSS-, JavaScript- und andere Dateien an den betreffenden Webserver gestellt.
35             Details dazu können in der Ansicht "Zugriffe" betrachtet werden, welche über das Navigations-Menü links erreicht werden kann.
36             In dieser Ansicht wird auch dargestellt, wie viele (und welche) Anfragen geblockt wurden.
37             Durch Antippen der betreffenden Anfragen können weitere Details dazu angezeigt werden, die zeigen, warum die Anfrage erlaubt oder blockiert wurde.</p>
38
39         <img class="center" src="images/request_details.png"/>
40
41         <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>:
42             EasyList, EasyPrivacy, Fanboy’s Annoyance List, and Fanboy’s Social Blocking List.
43             These filter lists are processed by Privacy Browser into the following 22 sublists, which check resource requests in the order listed.</p>
44
45         <ol>
46             <li>Main Allow List</li>
47             <li>Final Allow List</li>
48             <li>Domain Allow List</li>
49             <li>Domain Initial Allow List</li>
50             <li>Domain Final Allow List</li>
51             <li>Third-Party Allow List</li>
52             <li>Third-Party Domain Allow List</li>
53             <li>Third-Party Domain Initial Allow List</li>
54             <li>Main Block List</li>
55             <li>Initial Block List</li>
56             <li>Final Block List</li>
57             <li>Domain Block List</li>
58             <li>Domain Initial Block List</li>
59             <li>Domain Final Block List</li>
60             <li>Domain Regular Expression Block List</li>
61             <li>Third-Party Block List</li>
62             <li>Third-Party Initial Block List</li>
63             <li>Third-Party Domain Block List</li>
64             <li>Third-Party Domain Initial Block List</li>
65             <li>Third-Party Regular Expression Block List</li>
66             <li>Third-Party Domain Regular Expression Block List</li>
67             <li>Regular Expression Block List</li>
68         </ol>
69
70         <p>Listen mit "(URL-Anfang)" prüfen gegen den Anfang einer URL, solche mit "(URL-Ende)" gegen das Ende der URL. Domänen-Listen prüfen gegen bestimmte Domains.
71             Drittanbieter-Listen greifen nur, wenn die Domain der Anfrage eine andere ist als die Domain der aufgerufenen URL.
72             Listen mit regulären Ausdrücken folgen der <a href="https://de.wikipedia.org/wiki/Reguläre_Ausdrücke">Syntax für reguläre Ausdrücke</a>. Jede Unter-Liste hat dabei einen oder mehrere Einträge.
73             Bei Domänen-Unterlisten werden die Ressourcen-Zugriffe nur dann überprüft, wenn der erste Eintrag der Domain der aufgerufenen URL entspricht.</p>
74
75         <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.
76             This can sometimes lead to false positives, where resources are allowed or blocked in ways that weren’t intended by the original entry.
77             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>
78
79         <p>Privacy Browser has three additional filter lists.
80             <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/ultralist/">UltraList</a> and
81             <a href="https://www.stoutner.com/privacy-browser-android/filter-lists/ultraprivacy/">UltraPrivacy</a>
82             filters ads and trackers that EasyList and EasyPrivacy do not. The third blocks all third-party requests.
83             A request is only considered third-party if the base domain of the request is different than the base domain of the URL.
84             For example, if <code>www.website.com</code> loads a picture from <code>images.website.com</code>,
85             this is not blocked as a third-party request because they both share the same base domain of <code>website.com</code>.
86             Blocking all third-party requests increases privacy, but this filter list is disabled by default because it breaks a large number of websites.</p>
87     </body>
88 </html>