-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
96 lines (85 loc) · 2.69 KB
/
settings.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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Tab</title>
<style>
html, body{
width: 1000px;
}
body{
text-align: center;
}
#data{
font-family: 'Roboto';
font-size: 20px;
margin-top: 20px;
margin-left: 20px;
color: #757575;
}
#in{
color: #616161;
}
.demo-list-control {
width: 300px;
}
.demo-list-radio {
display: inline;
}
</style>
<script src="jquery-3.2.1.min.js"></script>
<script src="Chart.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="material/material.min.css">
<script src="material/material.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript" src = "chartstuff.js"></script>
<link rel="stylesheet" type="text/css" href="dialog-polyfill.css">
<script src="popup.js"></script>
</head>
<body>
<div id = "data">Settings:</div>
<ul class="demo-list-control mdl-list">
<li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<i class="material-icons">tab</i>
Open priority on launch
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="list-checkbox-1">
<input type="checkbox" id="list-checkbox-1" class="mdl-checkbox__input" checked />
</label>
</span>
</li>
<li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<i class="material-icons">donut_large</i>
Other Setting
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="list-checkbox-2">
<input type="checkbox" id="list-checkbox-2" class="mdl-checkbox__input" checked />
</label>
</span>
</li>
<li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<i class="material-icons">close</i>
Close unneccessary
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="list-checkbox-3">
<input type="checkbox" id="list-checkbox-3" class="mdl-checkbox__input" checked />
</label>
</span>
</li>
</ul>
<button class="mdl-button mdl-js-button mdl-button--icon mdl-button--colored" id = "butn">
<a href = "popup.html"><i class="material-icons" id = "in">arrow_back</i></a>
</button>
</body>
</html>