2014-07-17 16:52: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 — Whitelist< / title >
2018-03-12 13:28:07 +01:00
< link rel = "stylesheet" href = "lib/codemirror/lib/codemirror.css" >
< link rel = "stylesheet" href = "lib/codemirror/addon/search/matchesonscrollbar.css" >
< 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/whitelist.css" >
< link rel = "stylesheet" href = "css/codemirror.css" >
2014-07-17 16:52:43 +02:00
< / head >
< body >
2015-08-11 21:29:14 +02:00
< div id = "cloudWidget" class = "hide" data-cloud-entry = "whitelistPane" > < / div >
2018-03-28 15:11:55 +02:00
< p class = "vverbose" > < span data-i18n = "whitelistPrompt" > < / span > < a class = "fa info important" href = "https://github.com/gorhill/uBlock/wiki/Dashboard:-Whitelist" >  < / a >
2015-08-12 18:17:39 +02:00
< p >
< button id = "whitelistApply" class = "custom important" type = "button" disabled = "true" data-i18n = "whitelistApply" > < / button >  
< button id = "whitelistRevert" class = "custom" type = "button" disabled = "true" data-i18n = "genericRevert" > < / button >
2018-03-12 13:28:07 +01:00
< p > < div id = "whitelist" class = "codeMirrorContainer" > < / div >
2015-08-12 18:17:39 +02:00
< p >
< button id = "importWhitelistFromFile" class = "custom" data-i18n = "whitelistImport" > < / button >  
< button id = "exportWhitelistToFile" class = "custom" data-i18n = "whitelistExport" > < / button >
< input id = "importFilePicker" type = "file" accept = "text/plain" class = "hiddenFileInput" >
2014-07-17 16:52:43 +02:00
2018-03-12 13:28:07 +01: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 14:04:52 +01:00
< script src = "lib/punycode.js" > < / script >
2018-03-12 13:28:07 +01:00
< script src = "js/codemirror/search.js" > < / script >
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/whitelist.js" > < / script >
2014-07-17 16:52:43 +02:00
< / body >
< / html >