-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
44 lines (43 loc) · 976 Bytes
/
options.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Options</title>
<script src="lib/options.js"></script>
<style>
#help {
font-size: 0.9em;
color: #999999;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
</style>
</head>
<body>
<form>
<p>
<label>
刷新间隔:
<select disabled>
<option>10分钟</option>
</select>
</label>
</p>
<p>
<label>
Token:
<input required size="32" placeholder="Token" id="token"/>
</label>
</p>
</form>
<div id="help">
<ul>
<li> * Token 可以在 <a href="http://docs-ci.oneapm.com/share/">分享图表</a> 的链接里看到。</li>
<li> * 插件源码在 <a href="https://github.com/cloudinsight/mini-chrome-extension">Github</a></li>
</ul>
</div>
</body>
</html>