blob: 97dc8c95baa65d7205b69bce6d9d4ea5fab6b6a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {padding:20px}
label {display:block; width:800px; padding:0 0 20px}
textarea {width:100%; height:150px}
</style>
</head>
<body>
<h1 id="title"></h1>
<label>
<span id="whitelist_label"></span><br />
<textarea id="whitelist"></textarea>
</label>
<input type="button" id="save" value="" style="min-width:100px" /> <div id="status_saved" style="display:none; color:green; padding-left:5px"></div>
<script src="options.js"></script>
</body>
</html>
|