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