mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-01 16:33:06 +01:00
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>µBlock — Whitelist</title>
|
|
<link rel="stylesheet" type="text/css" href="css/common.css">
|
|
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
|
|
<style>
|
|
div > p:first-child {
|
|
margin-top: 0;
|
|
}
|
|
div > p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
#whitelist {
|
|
font-size: smaller;
|
|
width: 48em;
|
|
height: 40em;
|
|
white-space: nowrap;
|
|
}
|
|
#whitelist.bad {
|
|
background-color: #fee;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
<p data-i18n="whitelistPrompt"></p>
|
|
<p><button id="importWhitelistFromFile" data-i18n="whitelistImport"></button>   <button id="exportWhitelistToFile" data-i18n="whitelistExport"></button></p>
|
|
<textarea id="whitelist"></textarea>
|
|
<p><button id="whitelistApply" type="button" disabled="true" data-i18n="whitelistApply"></button></p>
|
|
</div>
|
|
|
|
<script src="lib/punycode.min.js"></script>
|
|
<script src="js/udom.js"></script>
|
|
<script src="js/i18n.js"></script>
|
|
<script src="js/dashboard-common.js"></script>
|
|
<script src="js/messaging-client.js"></script>
|
|
<script src="js/whitelist.js"></script>
|
|
|
|
</body>
|
|
</html>
|