]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/xml/preferences.xml
Add an option to block all third-party requests. https://redmine.stoutner.com/issues/209
[PrivacyBrowserAndroid.git] / app / src / main / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2016-2018 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser 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 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.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
22     <PreferenceCategory
23         android:key="privacy"
24         android:title="@string/privacy" >
25
26         <SwitchPreference
27             android:key="javascript_enabled"
28             android:title="@string/javascript_preference"
29             android:summary="@string/javascript_preference_summary"
30             android:defaultValue="false" />
31
32         <SwitchPreference
33             android:key="first_party_cookies_enabled"
34             android:title="@string/first_party_cookies_preference"
35             android:summary="@string/first_party_cookies_preference_summary"
36             android:defaultValue="false" />
37
38         <SwitchPreference
39             android:key="third_party_cookies_enabled"
40             android:title="@string/third_party_cookies_preference"
41             android:summary="@string/third_party_cookies_summary"
42             android:defaultValue="false" />
43
44         <SwitchPreference
45             android:key="dom_storage_enabled"
46             android:title="@string/dom_storage_preference"
47             android:summary="@string/dom_storage_preference_summary"
48             android:defaultValue="false" />
49
50         <!-- Save form data can be removed once the minimum API >= 26. -->
51         <SwitchPreference
52             android:key="save_form_data_enabled"
53             android:title="@string/save_form_data_preference"
54             android:summary="@string/save_form_data_preference_summary"
55             android:defaultValue="false" />
56
57         <ListPreference
58             android:key="user_agent"
59             android:title="@string/user_agent"
60             android:entries="@array/translated_user_agent_names"
61             android:entryValues="@array/user_agent_names"
62             android:defaultValue="Privacy Browser"
63             android:icon="?attr/userAgentIcon" />
64
65         <!-- android:inputType="textVisiblePassword" sets the keyboard to have a dedicated number row.-->
66         <EditTextPreference
67             android:key="custom_user_agent"
68             android:title="@string/custom_user_agent"
69             android:defaultValue="PrivacyBrowser/1.0"
70             android:inputType="textVisiblePassword|textMultiLine" />
71
72         <SwitchPreference
73             android:key="incognito_mode"
74             android:title="@string/incognito_mode"
75             android:summary="@string/incognito_mode_summary"
76             android:defaultValue="false" />
77
78         <SwitchPreference
79             android:key="do_not_track"
80             android:title="@string/do_not_track"
81             android:summary="@string/do_not_track_summary"
82             android:defaultValue="false" />
83
84         <SwitchPreference
85             android:key="allow_screenshots"
86             android:title="@string/allow_screenshots"
87             android:summary="@string/allow_screenshots_summary"
88             android:defaultValue="false" />
89     </PreferenceCategory>
90
91     <PreferenceCategory
92         android:key="blocklists"
93         android:title="@string/blocklists" >
94
95         <SwitchPreference
96             android:key="easylist"
97             android:title="@string/easylist"
98             android:summary="@string/easylist_summary"
99             android:defaultValue="true" />
100
101         <SwitchPreference
102             android:key="easyprivacy"
103             android:title="@string/easyprivacy"
104             android:summary="@string/easyprivacy_summary"
105             android:defaultValue="true" />
106
107         <SwitchPreference
108             android:key="fanboy_annoyance_list"
109             android:title="@string/fanboys_annoyance_list"
110             android:summary="@string/fanboys_annoyance_list_summary"
111             android:defaultValue="true" />
112
113         <SwitchPreference
114             android:key="fanboy_social_blocking_list"
115             android:title="@string/fanboys_social_blocking_list"
116             android:summary="@string/fanboys_social_blocking_list_summary"
117             android:defaultValue="true" />
118
119         <SwitchPreference
120             android:key="block_all_third_party_requests"
121             android:title="@string/block_all_third_party_requests"
122             android:summary="@string/block_all_third_party_requests_summary"
123             android:defaultValue="false" />
124     </PreferenceCategory>
125
126     <PreferenceCategory
127         android:key="tor"
128         android:title="@string/tor" >
129
130         <SwitchPreference
131             android:key="proxy_through_orbot"
132             android:title="@string/proxy_through_orbot"
133             android:summary="@string/proxy_through_orbot_summary"
134             android:defaultValue="false" />
135
136         <EditTextPreference
137             android:key="tor_homepage"
138             android:title="@string/tor_homepage"
139             android:defaultValue="https://3g2upl4pq6kufc4m.onion/"
140             android:inputType="textUri" />
141
142         <ListPreference
143             android:key="tor_search"
144             android:title="@string/tor_search"
145             android:entries="@array/tor_search_entries"
146             android:entryValues="@array/tor_search_entry_values"
147             android:defaultValue="https://3g2upl4pq6kufc4m.onion/html/?q=" />
148
149         <!--suppress AndroidDomInspection -->
150         <!--`suppress AndroidDomInspection` removes the error about the default value being blank. -->
151         <EditTextPreference
152             android:key="tor_search_custom_url"
153             android:title="@string/tor_search_custom_url"
154             android:defaultValue=""
155             android:inputType="textUri" />
156     </PreferenceCategory>
157
158     <PreferenceCategory
159         android:key="search_category"
160         android:title="@string/search" >
161
162         <ListPreference
163             android:key="search"
164             android:title="@string/search"
165             android:entries="@array/search_entries"
166             android:entryValues="@array/search_entry_values"
167             android:defaultValue="https://duckduckgo.com/html/?q="
168             android:icon="?attr/searchIcon" />
169
170         <!--suppress AndroidDomInspection -->
171         <!--`suppress AndroidDomInspection` removes the error about the default value being blank. -->
172         <EditTextPreference
173             android:key="search_custom_url"
174             android:title="@string/search_custom_url"
175             android:defaultValue=""
176             android:inputType="textUri" />
177     </PreferenceCategory>
178
179     <PreferenceCategory
180         android:key="full_screen"
181         android:title="@string/full_screen" >
182
183         <SwitchPreference
184             android:key="full_screen_browsing_mode"
185             android:title="@string/full_screen_browsing_mode"
186             android:summary="@string/full_screen_browsing_mode_summary"
187             android:defaultValue="false" />
188
189         <SwitchPreference
190             android:key="hide_system_bars"
191             android:title="@string/hide_system_bars"
192             android:summary="@string/hide_system_bars_summary"
193             android:defaultValue="false" />
194
195         <SwitchPreference
196             android:key="translucent_navigation_bar"
197             android:title="@string/translucent_navigation_bar"
198             android:summary="@string/translucent_navigation_bar_summary"
199             android:defaultValue="true" />
200     </PreferenceCategory>
201
202     <PreferenceCategory
203         android:key="clear_and_exit"
204         android:title="@string/clear_and_exit" >
205
206         <SwitchPreference
207             android:key="clear_everything"
208             android:title="@string/clear_everything"
209             android:summary="@string/clear_everything_summary"
210             android:defaultValue="true" />
211
212         <SwitchPreference
213             android:key="clear_cookies"
214             android:title="@string/clear_cookies_preference"
215             android:summary="@string/clear_cookies_summary"
216             android:defaultValue="true" />
217
218         <SwitchPreference
219             android:key="clear_dom_storage"
220             android:title="@string/clear_dom_storage_preference"
221             android:summary="@string/clear_dom_storage_summary"
222             android:defaultValue="true" />
223
224         <SwitchPreference
225             android:key="clear_form_data"
226             android:title="@string/clear_form_data_preference"
227             android:summary="@string/clear_form_data_summary"
228             android:defaultValue="true" />
229
230         <SwitchPreference
231             android:key="clear_cache"
232             android:title="@string/clear_cache"
233             android:summary="@string/clear_cache_summary"
234             android:defaultValue="true" />
235     </PreferenceCategory>
236
237     <PreferenceCategory
238         android:key="general"
239         android:title="@string/general" >
240
241         <EditTextPreference
242             android:key="homepage"
243             android:title="@string/homepage"
244             android:defaultValue="https://duckduckgo.com/?kao=-1&amp;kak=-1"
245             android:inputType="textUri"
246             android:icon="?attr/homepageIcon" />
247
248         <ListPreference
249             android:key="default_font_size"
250             android:title="@string/default_font_size"
251             android:entries="@array/default_font_size_entries"
252             android:entryValues="@array/default_font_size_entry_values"
253             android:defaultValue="100"
254             android:icon="?attr/fontSizeIcon" />
255
256         <SwitchPreference
257             android:key="swipe_to_refresh"
258             android:title="@string/swipe_to_refresh_preference"
259             android:summary="@string/swipe_to_refresh_summary"
260             android:defaultValue="true" />
261
262         <SwitchPreference
263             android:key="display_additional_app_bar_icons"
264             android:title="@string/display_additional_app_bar_icons"
265             android:summary="@string/display_additional_app_bar_icons_summary"
266             android:defaultValue="false" />
267
268         <SwitchPreference
269             android:key="dark_theme"
270             android:title="@string/dark_theme"
271             android:summary="@string/dark_theme_summary"
272             android:defaultValue="false" />
273
274         <SwitchPreference
275             android:key="night_mode"
276             android:title="@string/night_mode"
277             android:summary="@string/night_mode_summary"
278             android:defaultValue="false" />
279
280         <SwitchPreference
281             android:key="display_webpage_images"
282             android:title="@string/display_webpage_images"
283             android:summary="@string/display_webpage_images_summary"
284             android:defaultValue="true" />
285     </PreferenceCategory>
286 </PreferenceScreen>