2014-06-25 00:30:36 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2014-10-21 16:45:54 +02:00
|
|
|
<meta charset="utf-8">
|
2015-03-10 05:00:33 +01:00
|
|
|
<title>uBlock — Settings</title>
|
2014-06-25 00:30:36 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/common.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
|
|
|
|
<style>
|
2014-06-27 23:06:42 +02:00
|
|
|
ul {
|
2015-01-06 17:44:06 +01:00
|
|
|
padding-left: 1em;
|
2014-06-27 23:06:42 +02:00
|
|
|
}
|
2015-03-07 05:36:09 +01:00
|
|
|
li {
|
|
|
|
margin-top: 0.25em;
|
|
|
|
}
|
|
|
|
ul#userSettings {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
#localData > ul > li {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
#localData > ul > li > ul > li:nth-of-type(2) {
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: small;
|
|
|
|
}
|
2014-09-30 21:55:18 +02:00
|
|
|
#experimental-enabled {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2014-06-25 00:30:36 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2015-03-07 05:36:09 +01:00
|
|
|
<ul id="userSettings">
|
2014-10-17 21:44:19 +02:00
|
|
|
<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>
|
2014-10-07 13:25:09 +02:00
|
|
|
<li><input id="context-menu-enabled" type="checkbox"><label data-i18n="settingsContextMenuPrompt" for="context-menu-enabled"></label>
|
2015-01-06 17:44:06 +01:00
|
|
|
<li><input id="advanced-user-enabled" type="checkbox"><label data-i18n="settingsAdvancedUserPrompt" for="advanced-user-enabled"></label>
|
2015-01-19 01:17:36 +01:00
|
|
|
<!-- <li><input id="experimental-enabled" type="checkbox" disabled><label data-i18n="settingsExperimentalPrompt" for="experimental-enabled"></label> -->
|
2015-03-07 05:36:09 +01:00
|
|
|
</ul>
|
2014-06-25 00:30:36 +02:00
|
|
|
|
2015-03-07 05:36:09 +01:00
|
|
|
<div id="localData" style="margin: 0 1em;">
|
|
|
|
<div style="margin: 2.5em 0; border-top: 1px solid #ccc;"></div>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<li style="display: none;"><span data-i18n="settingsLastBackupPrompt"></span><ul>
|
|
|
|
<li>
|
|
|
|
</ul>
|
|
|
|
<li style="display: none;"><span data-i18n="settingsLastRestorePrompt"></span><ul>
|
|
|
|
<li>
|
|
|
|
<li>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2015-01-06 17:44:06 +01:00
|
|
|
|
2015-03-07 05:36:09 +01:00
|
|
|
<div style="margin: 2.5em 1em;">
|
2015-01-06 17:44:06 +01:00
|
|
|
<p><button type="button" id="export" data-i18n="aboutBackupDataButton"></button> 
|
|
|
|
<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>
|
2015-03-07 05:36:09 +01:00
|
|
|
</div>
|
2015-01-06 17:44:06 +01:00
|
|
|
|
2014-11-04 12:32:44 +01:00
|
|
|
<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>
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|