2014-07-17 08:52: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 — Whitelist< / title >
2018-03-12 06:28:07 -06:00
< link rel = "stylesheet" href = "lib/codemirror/lib/codemirror.css" >
< link rel = "stylesheet" href = "lib/codemirror/addon/search/matchesonscrollbar.css" >
2020-04-11 09:32:43 -06:00
< link rel = "stylesheet" type = "text/css" href = "css/themes/default.css" >
2018-03-12 06:28:07 -06: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-12 06:28:07 -06:00
< link rel = "stylesheet" href = "css/dashboard-common.css" >
< link rel = "stylesheet" href = "css/cloud-ui.css" >
< link rel = "stylesheet" href = "css/whitelist.css" >
< link rel = "stylesheet" href = "css/codemirror.css" >
2014-07-17 08:52:43 -06:00
< / head >
< body >
2018-03-28 14:15:50 -06:00
< div class = "body" >
< div id = "cloudWidget" class = "hide" data-cloud-entry = "whitelistPane" > < / div >
< p class = "vverbose" > < span data-i18n = "whitelistPrompt" > < / span > < a class = "fa info important" href = "https://github.com/gorhill/uBlock/wiki/Dashboard:-Whitelist" >  < / a >
< / p >
< p >
2020-04-21 14:33:08 -06:00
< button id = "whitelistApply" class = "important iconifiable" type = "button" disabled > < span class = "fa" >  < / span > < span data-i18n = "whitelistApply" > < / span > < / button >
< button id = "whitelistRevert" class = "iconifiable" type = "button" disabled > < span class = "fa" >  < / span > < span data-i18n = "genericRevert" > < / span > < / button >
2018-03-28 14:15:50 -06:00
   
2020-04-21 14:33:08 -06:00
< button id = "importWhitelistFromFile" class = "iconifiable" type = "button" > < span class = "fa" >  < / span > < span data-i18n = "whitelistImport" > < / span > < / button >
< button id = "exportWhitelistToFile" class = "iconifiable" type = "button" > < span class = "fa" >  < / span > < span data-i18n = "whitelistExport" > < / span > < / button >
2018-03-28 14:15:50 -06:00
< / p >
< / div >
2020-04-25 08:19:08 -06:00
< div id = "whitelist" class = "codeMirrorContainer" > < / div >
2018-03-28 14:15:50 -06:00
< div class = "hidden" >
< input id = "importFilePicker" type = "file" accept = "text/plain" >
< / div >
2014-07-17 08:52:43 -06:00
2018-03-12 06:28:07 -06:00
< script src = "lib/codemirror/lib/codemirror.js" > < / script >
< 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 >
< script src = "lib/codemirror/addon/search/searchcursor.js" > < / script >
< script src = "lib/codemirror/addon/selection/active-line.js" > < / script >
2015-01-30 06:04:52 -07:00
< script src = "lib/punycode.js" > < / script >
2018-03-12 06:28:07 -06:00
< script src = "js/codemirror/search.js" > < / script >
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 >
2014-11-04 04:32:44 -07:00
< script src = "js/whitelist.js" > < / script >
2014-07-17 08:52:43 -06:00
< / body >
< / html >