]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/xml/preferences.xml
ecf94094280d10afa979406ed694d24b54591406
[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="ultraprivacy"
121             android:title="@string/ultraprivacy"
122             android:summary="@string/ultraprivacy_summary"
123             android:defaultValue="true" />
124
125         <SwitchPreference
126             android:key="block_all_third_party_requests"
127             android:title="@string/block_all_third_party_requests"
128             android:summary="@string/block_all_third_party_requests_summary"
129             android:defaultValue="false" />
130     </PreferenceCategory>
131
132     <PreferenceCategory
133         android:key="tor"
134         android:title="@string/tor" >
135
136         <SwitchPreference
137             android:key="proxy_through_orbot"
138             android:title="@string/proxy_through_orbot"
139             android:summary="@string/proxy_through_orbot_summary"
140             android:defaultValue="false" />
141
142         <EditTextPreference
143             android:key="tor_homepage"
144             android:title="@string/tor_homepage"
145             android:defaultValue="http://ulrn6sryqaifefld.onion/"
146             android:inputType="textUri" />
147
148         <ListPreference
149             android:key="tor_search"
150             android:title="@string/tor_search"
151             android:entries="@array/tor_search_entries"
152             android:entryValues="@array/tor_search_entry_values"
153             android:defaultValue="http://ulrn6sryqaifefld.onion/?q=" />
154
155         <!--suppress AndroidDomInspection -->
156         <!--`suppress AndroidDomInspection` removes the error about the default value being blank. -->
157         <EditTextPreference
158             android:key="tor_search_custom_url"
159             android:title="@string/tor_search_custom_url"
160             android:defaultValue=""
161             android:inputType="textUri" />
162     </PreferenceCategory>
163
164     <PreferenceCategory
165         android:key="search_category"
166         android:title="@string/search" >
167
168         <ListPreference
169             android:key="search"
170             android:title="@string/search"
171             android:entries="@array/search_entries"
172             android:entryValues="@array/search_entry_values"
173             android:defaultValue="https://searx.me/?q="
174             android:icon="?attr/searchIcon" />
175
176         <!--suppress AndroidDomInspection -->
177         <!--`suppress AndroidDomInspection` removes the error about the default value being blank. -->
178         <EditTextPreference
179             android:key="search_custom_url"
180             android:title="@string/search_custom_url"
181             android:defaultValue=""
182             android:inputType="textUri" />
183     </PreferenceCategory>
184
185     <PreferenceCategory
186         android:key="full_screen"
187         android:title="@string/full_screen" >
188
189         <SwitchPreference
190             android:key="full_screen_browsing_mode"
191             android:title="@string/full_screen_browsing_mode"
192             android:summary="@string/full_screen_browsing_mode_summary"
193             android:defaultValue="false" />
194
195         <SwitchPreference
196             android:key="hide_system_bars"
197             android:title="@string/hide_system_bars"
198             android:summary="@string/hide_system_bars_summary"
199             android:defaultValue="false" />
200
201         <SwitchPreference
202             android:key="translucent_navigation_bar"
203             android:title="@string/translucent_navigation_bar"
204             android:summary="@string/translucent_navigation_bar_summary"
205             android:defaultValue="true" />
206     </PreferenceCategory>
207
208     <PreferenceCategory
209         android:key="clear_and_exit"
210         android:title="@string/clear_and_exit" >
211
212         <SwitchPreference
213             android:key="clear_everything"
214             android:title="@string/clear_everything"
215             android:summary="@string/clear_everything_summary"
216             android:defaultValue="true" />
217
218         <SwitchPreference
219             android:key="clear_cookies"
220             android:title="@string/clear_cookies_preference"
221             android:summary="@string/clear_cookies_summary"
222             android:defaultValue="true" />
223
224         <SwitchPreference
225             android:key="clear_dom_storage"
226             android:title="@string/clear_dom_storage_preference"
227             android:summary="@string/clear_dom_storage_summary"
228             android:defaultValue="true" />
229
230         <SwitchPreference
231             android:key="clear_form_data"
232             android:title="@string/clear_form_data_preference"
233             android:summary="@string/clear_form_data_summary"
234             android:defaultValue="true" />
235
236         <SwitchPreference
237             android:key="clear_cache"
238             android:title="@string/clear_cache"
239             android:summary="@string/clear_cache_summary"
240             android:defaultValue="true" />
241     </PreferenceCategory>
242
243     <PreferenceCategory
244         android:key="general"
245         android:title="@string/general" >
246
247         <EditTextPreference
248             android:key="homepage"
249             android:title="@string/homepage"
250             android:defaultValue="https://searx.me/"
251             android:inputType="textUri"
252             android:icon="?attr/homepageIcon" />
253
254         <ListPreference
255             android:key="default_font_size"
256             android:title="@string/default_font_size"
257             android:entries="@array/default_font_size_entries"
258             android:entryValues="@array/default_font_size_entry_values"
259             android:defaultValue="100"
260             android:icon="?attr/fontSizeIcon" />
261
262         <SwitchPreference
263             android:key="swipe_to_refresh"
264             android:title="@string/swipe_to_refresh_preference"
265             android:summary="@string/swipe_to_refresh_summary"
266             android:defaultValue="true" />
267
268         <SwitchPreference
269             android:key="display_additional_app_bar_icons"
270             android:title="@string/display_additional_app_bar_icons"
271             android:summary="@string/display_additional_app_bar_icons_summary"
272             android:defaultValue="false" />
273
274         <SwitchPreference
275             android:key="dark_theme"
276             android:title="@string/dark_theme"
277             android:summary="@string/dark_theme_summary"
278             android:defaultValue="false" />
279
280         <SwitchPreference
281             android:key="night_mode"
282             android:title="@string/night_mode"
283             android:summary="@string/night_mode_summary"
284             android:defaultValue="false" />
285
286         <SwitchPreference
287             android:key="display_webpage_images"
288             android:title="@string/display_webpage_images"
289             android:summary="@string/display_webpage_images_summary"
290             android:defaultValue="true" />
291     </PreferenceCategory>
292 </PreferenceScreen>