-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
98 lines (92 loc) · 2.14 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>
Peacekeeper
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen" type="text/css">
<link href="custom.css" rel="stylesheet" media="screen" type="text/css">
</head>
<body>
<div id="wrap">
<div class="container">
<div class="page-header">
<h1>
Peacekeeper
</h1>
</div>
<p class="lead">
Peacekeeper will notify you for each website you specify.
</p>
<div>
<h3>Configs</h3>
<ul>
<li>
alert: Run JavaScript <code>alert()</code>
</li>
<li>
favicon: Change the favicon
</li>
<li>
style: Change style <code>backgroundColor</code>
</li>
<li>
url: Specify the target URL
</li>
</ul>
<form class="form-inline" id="configsForm">
<textarea class="field span12" id="textareaConfigs" rows="15" placeholder="Your configs here."></textarea>
<br>
<br>
<a id="saveConfigs" class="btn btn-primary ">Save Configs</a>
</form>
</div>
<div>
<summary>
<h3>Sample configs</h3>
</summary>
<details>
<textarea class="field span12" id="textareaSample" rows="15" placeholder="Enter a short synopsis" disabled></textarea>
</form>
</div>
</details>
<summary>
<h3>
Screenshots
</h3>
</summary>
<details>
<h4>
Before
</h4>
<ul>
<li>
Which one is LOCALHOST? You will have an accident someday.
</li>
<img src="before.png">
</ul>
<h4>
After
</h4>
<ul>
<li>
It's sooooo peaceful.
</li>
<img src="after.png">
</ul>
</details>
</div>
</div>
<div id="footer">
<div class="container">
<p></p>
<p class="muted credit">
GitHub <a target="_blank" href="https://github.com/yuki777/peacekeeper">yuki777/peacekeeper</a>
</p>
</div>
</div>
<script src="options.js" type="text/javascript"></script>
</body>
</html>