-
Notifications
You must be signed in to change notification settings - Fork 15
/
options.html
39 lines (39 loc) · 1010 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>chrome options</title>
<link rel="stylesheet" type="text/css" href="custom.css" />
<script src="node_modules/chrome-options/dist/styles.min.js"></script>
<script src="node_modules/chrome-options/dist/main.min.js" defer></script>
<script src="options.js" defer></script>
</head>
<body class="chrome-bootstrap">
<div class="frame">
<div class="navigation">
<h1 class="chrome-options-title"></h1>
<ul id="main-menu" class="menu">
</ul>
<ul class="menu about">
<li>
<a href="#about">About</a>
</li>
</ul>
</div>
<div class="mainview view">
<div id="about">
<header>
<h1>About</h1>
</header>
<div class="content">
<p>hello</p>
</div>
</div>
</div>
<div class="save-container">
<span class="auto">Saved!</span>
<button disabled>Save</button>
</div>
</div>
</body>
</html>