-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
67 lines (67 loc) · 1.75 KB
/
Copy pathoptions.html
File metadata and controls
67 lines (67 loc) · 1.75 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script src="./options.js"></script>
<style>
body {
margin-left: 15px;
margin-top: 10px;
}
</style>
</head>
<body>
<div>
<div class="input-group">
<span class="input-group-text">url where push cookie to:</span>
<input
id="url-send-to"
type="text"
class="form-control"
style="width: 600px"
/>
<span> sample: http://example.com/a/b.do</span>
</div>
<div class="input-group">
<span class="input-group-text">url to query rsa public key:</span>
<input
id="url-get-rsa-public-key"
type="text"
class="form-control"
style="width: 600px"
/>
<span> sample: http://example.com/a/c.do</span>
</div>
<div class="input-group">
<span class="input-group-text">doamin to exclude:</span>
<textarea
id="domains-to-exclude"
rows="5"
class="form-control"
style="width: 600px"
>
</textarea>
<span>sample: *.abc.cn;*.google.com;*.github.com</span>
</div>
<div class="form-text">
<a id="saveForm" href="#">save form</a>
</div>
<hr/>
<div class="form-text">
<a id="showOptionsAsJson" href="#">show options as json</a>
</div>
<hr/>
<div class="input-group">
<span class="input-group-text">all options in json:</span>
<textarea
id="all-options-in-json"
rows="8"
class="form-control"
style="width: 600px"
></textarea>
<div class="form-text">
<a id="saveFromJson" href="#">save from json</a>
</div>
</div>
</body>
</html>