2014-07-17 14:52:43 +00:00
<!DOCTYPE html>
< html >
< head >
2014-10-21 14:45:54 +00:00
< meta charset = "utf-8" >
2017-01-24 13:23:52 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2015-03-10 04:00:33 +00:00
< title > uBlock — Whitelist< / title >
2018-03-12 12:28:07 +00:00
< link rel = "stylesheet" href = "lib/codemirror/lib/codemirror.css" >
< link rel = "stylesheet" href = "lib/codemirror/addon/search/matchesonscrollbar.css" >
2020-12-06 16:24:04 +00:00
< link rel = "stylesheet" href = "css/themes/default.css" >
2018-03-12 12:28:07 +00:00
< link rel = "stylesheet" href = "css/common.css" >
2019-05-23 23:29:59 +00:00
< link rel = "stylesheet" href = "css/fa-icons.css" >
2018-03-12 12:28:07 +00: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 14:52:43 +00:00
< / head >
< body >
2018-03-28 20:15:50 +00:00
< div class = "body" >
< div id = "cloudWidget" class = "hide" data-cloud-entry = "whitelistPane" > < / div >
2020-12-06 16:24:04 +00:00
< p class = "vverbose" > < span data-i18n = "whitelistPrompt" > < / span > < a class = "fa-icon info important" href = "https://github.com/gorhill/uBlock/wiki/Dashboard:-Trusted-sites" > info-circle< / a >
2018-03-28 20:15:50 +00:00
< / p >
< p >
2022-01-30 23:35:26 +00:00
< button id = "whitelistApply" class = "preferred iconified" type = "button" disabled > < span class = "fa-icon" > check< / span > < span data-i18n = "whitelistApply" > _< / span > < span class = "hover" > < / span > < / button >
< button id = "whitelistRevert" class = "iconified" type = "button" disabled > < span class = "fa-icon" > undo< / span > < span data-i18n = "genericRevert" > _< / span > < span class = "hover" > < / span > < / button >
2018-03-28 20:15:50 +00:00
   
2022-01-30 23:35:26 +00:00
< button id = "importWhitelistFromFile" class = "iconified" type = "button" > < span class = "fa-icon" > download-alt< / span > < span data-i18n = "whitelistImport" > _< / span > < span class = "hover" > < / span > < / button >
< button id = "exportWhitelistToFile" class = "iconified" type = "button" > < span class = "fa-icon" > upload-alt< / span > < span data-i18n = "whitelistExport" > _< / span > < span class = "hover" > < / span > < / button >
2018-03-28 20:15:50 +00:00
< / p >
< / div >
2023-03-03 01:50:32 +00:00
< div id = "whitelist" class = "codeMirrorContainer cm-theme-override" > < / div >
2018-03-28 20:15:50 +00:00
< div class = "hidden" >
< input id = "importFilePicker" type = "file" accept = "text/plain" >
< / div >
2014-07-17 14:52:43 +00:00
2018-03-12 12:28:07 +00: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/searchcursor.js" > < / script >
< script src = "lib/codemirror/addon/selection/active-line.js" > < / script >
2022-02-02 20:40:47 +00:00
< script src = "lib/hsluv/hsluv-0.1.0.min.js" > < / script >
2018-03-12 12:28:07 +00:00
2023-04-14 14:26:45 +00:00
< script src = "js/vapi.js" > < / script >
< script src = "js/vapi-common.js" > < / script >
< script src = "js/vapi-client.js" > < / script >
2023-04-10 14:03:51 +00:00
< script src = "js/codemirror/search.js" type = "module" > < / script >
2020-08-02 16:18:01 +00:00
< script src = "js/codemirror/search-thread.js" > < / script >
2018-03-12 12:28:07 +00:00
2023-04-10 14:03:51 +00:00
< script src = "js/fa-icons.js" type = "module" > < / script >
2022-11-12 14:51:22 +00:00
< script src = "js/theme.js" type = "module" > < / script >
2022-09-13 21:44:24 +00:00
< script src = "js/i18n.js" type = "module" > < / script >
2022-11-12 14:51:22 +00:00
< script src = "js/dashboard-common.js" type = "module" > < / script >
2022-09-13 21:44:24 +00:00
< script src = "js/cloud-ui.js" type = "module" > < / script >
< script src = "js/whitelist.js" type = "module" > < / script >
2014-07-17 14:52:43 +00:00
< / body >
< / html >