-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
65 lines (59 loc) · 1.2 KB
/
popup.html
File metadata and controls
65 lines (59 loc) · 1.2 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
<html>
<body>
<style>
* {
font-family: monospace;
font-size: 12px;
}
body {
margin: 8px;
}
#content {
width: 400px;
input, textarea {
width: 100%;
border: 1px solid gainsboro;
padding: 8px;
border-radius: 2px;
}
textarea {
height: 200px;
resize: none;
}
}
p {
margin-block-start: 8px;
margin-block-end: 8px;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<div id="content">
<p>
GitHub token:
<input id="github-token" type="password"></input>
</p>
<p>
URLs to save (one per line):
<textarea id="urls"></textarea>
</p>
<p>
<a href="#" id="save">Save context</a>
</p>
<p>
<a href="#" id="load">Load context</a>
</p>
<p>
<a href="#" id="enable-scripts">Debug: enable scripts</a>
</p>
<p>
<a href="#" id="disable-scripts">Debug: disable scripts</a>
</p>
</div>
<script src="popup.js"></script>
</body>
</html>