aboutsummaryrefslogtreecommitdiffstats
path: root/src/settings.html
blob: fe376538c57f1a20a578b2ef65ac47c9f3f6488d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>µBlock — Settings</title>
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
<style>
ul {
    list-style-type: none;
    padding-left: 1em;
    }
#experimental-enabled {
    margin-top: 1em;
    }
</style>
</head>

<body>

<ul>
    <li><input id="collapse-blocked" type="checkbox"><label data-i18n="settingsCollapseBlockedPrompt" for="collapse-blocked"></label>
    <li><input id="icon-badge" type="checkbox"><label data-i18n="settingsIconBadgePrompt" for="icon-badge"></label>
    <li><input id="context-menu-enabled" type="checkbox"><label data-i18n="settingsContextMenuPrompt" for="context-menu-enabled"></label>
    <li><input id="advanced-user-enabled" type="checkbox"><label data-i18n="settingsAdvancedUserPrompt" for="advanced-user-enabled"></label>

    <!-- <li><input id="experimental-enabled" type="checkbox" disabled><label data-i18n="settingsExperimentalPrompt" for="experimental-enabled"></label> -->
</ul>

<div style="margin:3em 0;border-top:1px solid #ccc;"></div>

<div style="margin:1em 0 0 1em;">
    <p><button type="button" id="export" data-i18n="aboutBackupDataButton"></button>&ensp;
       <button type="button" id="import" data-i18n="aboutRestoreDataButton"></button>
       <input id="restoreFilePicker" type="file" accept="text/plain" class="hiddenFileInput">
    <p>
    <p><button type="button" id="reset" data-i18n="aboutResetDataButton"></button>
</div>

<script src="js/vapi-common.js"></script>
<script src="js/vapi-client.js"></script>
<script src="js/udom.js"></script>
<script src="js/i18n.js"></script>
<script src="js/dashboard-common.js"></script>
<script src="js/settings.js"></script>

</body>
</html>