-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
53 lines (45 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="nzqm-options-container">
<div class="m-t-10">
<div class="text-center">
<b>Selected Theme:</b>
</div>
<div class="text-center">
<img id="nzqm-theme-preview" src="" alt="" width="150" height="75">
</div>
</div>
<div class="inline-flex-evenly m-t-10">
<label for="theme-select">
<b>Choose a Theme:</b>
</label>
<select name="theme-select" id="theme-select">
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="matrix">Matrix</option>
<option value="cartoon">Cartoon</option>
<option value="evil">Evil</option>
</select>
</div>
<div id="nzqm-operation-result">
<p class="text-center"></p>
</div>
<div class="text-center explenation-text">
<p>You can configure the extension shortucts from the extension configuration page in Chrome. <br></p>
<p class="text-left no-margin"><span>•</span> Open chrome://extensions or click the button below. <br></p>
<p class="text-left no-margin"><span>•</span> Find SoundCloud Controller in the list of all your installed extensions <br> </p>
<p class="text-left no-margin"><span>•</span> Setup your shortcuts from there. <br></p>
<p>Remember, you can set shortcuts as global so they are active even when Chrome is not on focus.</p>
</div>
<div class="inline-flex-evenly">
<button id="nzqm-shortcuts">Open Shortcuts</button>
</div>
</div>
<script src="options.js"></script>
</body>
</html>