2014-06-23 16:42:43 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2014-10-21 08:45:54 -06:00
|
|
|
<meta charset="utf-8">
|
2017-01-24 06:23:52 -07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-03-09 22:00:33 -06:00
|
|
|
<title>uBlock — Your filters</title>
|
2018-02-28 16:51:33 -07:00
|
|
|
|
2018-03-04 13:00:00 -07:00
|
|
|
<link rel="stylesheet" href="lib/codemirror/lib/codemirror.css">
|
2020-07-10 06:01:39 -06:00
|
|
|
<link rel="stylesheet" href="lib/codemirror/addon/fold/foldgutter.css">
|
2020-06-15 07:15:13 -06:00
|
|
|
<link rel="stylesheet" href="lib/codemirror/addon/hint/show-hint.css">
|
2018-03-04 13:00:00 -07:00
|
|
|
<link rel="stylesheet" href="lib/codemirror/addon/search/matchesonscrollbar.css">
|
2018-02-28 16:51:33 -07:00
|
|
|
|
2020-04-11 09:32:43 -06:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/themes/default.css">
|
2018-03-04 13:00:00 -07:00
|
|
|
<link rel="stylesheet" href="css/common.css">
|
2019-05-23 17:29:59 -06:00
|
|
|
<link rel="stylesheet" href="css/fa-icons.css">
|
2018-03-04 13:00:00 -07:00
|
|
|
<link rel="stylesheet" href="css/dashboard-common.css">
|
|
|
|
<link rel="stylesheet" href="css/cloud-ui.css">
|
|
|
|
<link rel="stylesheet" href="css/1p-filters.css">
|
|
|
|
<link rel="stylesheet" href="css/codemirror.css">
|
2014-06-23 16:42:43 -06:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2018-03-28 14:15:50 -06:00
|
|
|
<div class="body">
|
|
|
|
<div id="cloudWidget" class="hide" data-cloud-entry="myFiltersPane"></div>
|
|
|
|
|
2020-10-05 09:38:30 -06:00
|
|
|
<p class="vverbose"><span data-i18n="1pFormatHint"></span> <a class="fa info" href="https://github.com/gorhill/uBlock/wiki/Dashboard:-My-filters" target="_blank"></a></p>
|
2018-03-28 14:15:50 -06:00
|
|
|
<p>
|
2020-04-21 14:33:08 -06:00
|
|
|
<button id="userFiltersApply" class="important iconifiable" type="button" disabled><span class="fa"></span><span data-i18n="1pApplyChanges"></span></button>
|
|
|
|
<button id="userFiltersRevert" class="iconifiable" type="button" disabled><span class="fa"></span><span data-i18n="genericRevert"></span></button>
|
2020-04-16 06:49:34 -06:00
|
|
|
 
|
2020-04-21 14:33:08 -06:00
|
|
|
<button id="importUserFiltersFromFile" class="iconifiable" type="button"><span class="fa"></span><span data-i18n="1pImport"></span></button>
|
|
|
|
<button id="exportUserFiltersToFile" class="iconifiable" type="button"><span class="fa"></span><span data-i18n="1pExport"></span></button>
|
2018-03-28 14:15:50 -06:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-04-25 08:19:08 -06:00
|
|
|
<div id="userFilters" class="codeMirrorContainer codeMirrorBreakAll" spellcheck="false"></div>
|
2018-03-28 14:15:50 -06:00
|
|
|
<div class="hidden">
|
|
|
|
<input id="importFilePicker" type="file" accept="text/plain">
|
|
|
|
</div>
|
2014-06-23 16:42:43 -06:00
|
|
|
|
2018-02-28 16:51:33 -07:00
|
|
|
<script src="lib/codemirror/lib/codemirror.js"></script>
|
2020-06-14 12:02:33 -06:00
|
|
|
<script src="lib/codemirror/addon/comment/comment.js"></script>
|
2018-03-04 12:07:01 -07:00
|
|
|
<script src="lib/codemirror/addon/display/panel.js"></script>
|
2020-06-14 10:05:42 -06:00
|
|
|
<script src="lib/codemirror/addon/edit/closebrackets.js"></script>
|
|
|
|
<script src="lib/codemirror/addon/edit/matchbrackets.js"></script>
|
2020-07-10 06:01:39 -06:00
|
|
|
<script src="lib/codemirror/addon/fold/foldcode.js"></script>
|
|
|
|
<script src="lib/codemirror/addon/fold/foldgutter.js"></script>
|
2020-06-15 07:15:13 -06:00
|
|
|
<script src="lib/codemirror/addon/hint/show-hint.js"></script>
|
2018-03-04 12:07:01 -07:00
|
|
|
<script src="lib/codemirror/addon/scroll/annotatescrollbar.js"></script>
|
2018-03-05 04:59:03 -07:00
|
|
|
<script src="lib/codemirror/addon/search/searchcursor.js"></script>
|
|
|
|
<script src="lib/codemirror/addon/selection/active-line.js"></script>
|
2018-03-04 12:07:01 -07:00
|
|
|
|
|
|
|
<script src="js/codemirror/search.js"></script>
|
2020-08-02 10:18:01 -06:00
|
|
|
<script src="js/codemirror/search-thread.js"></script>
|
2020-07-08 07:52:27 -06:00
|
|
|
<script src="js/codemirror/ubo-static-filtering.js"></script>
|
2018-02-28 16:51:33 -07:00
|
|
|
|
2019-05-23 17:29:59 -06:00
|
|
|
<script src="js/fa-icons.js"></script>
|
2017-10-27 12:22:45 -06:00
|
|
|
<script src="js/vapi.js"></script>
|
2014-11-04 04:32:44 -07: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>
|
2015-08-11 13:29:14 -06:00
|
|
|
<script src="js/cloud-ui.js"></script>
|
2020-06-04 05:18:54 -06:00
|
|
|
<script src="js/static-filtering-parser.js"></script>
|
2014-11-04 04:32:44 -07:00
|
|
|
<script src="js/1p-filters.js"></script>
|
2014-06-23 16:42:43 -06:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|