-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
43 lines (41 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="options.css">
<title>Javascript Injector Options Popup</title>
</head>
<body>
<div id="scroller">
</div>
<button id="add">Add Another</button>
<button id="save">Save</button>
<span id="saved-changes">Changes saved!</small>
<template id="item">
<div class="row item">
<button title="Remove" class="remove-me">✖</button>
<div class="input-group">
<label>URL</label>
<input name="url" type="text">
</div>
<div class="input-group">
<label>Code</label>
<textarea rows="5" name="code"></textarea>
</div>
<div class="input-group">
<label>Match for any subdomain</label>
<input name="match_sub" type="checkbox">
<br>
<small>if checked and domain is 'spotify.com', will run (for example) in 'open.spotify.com'.</small>
</div>
<div class="input-group">
<label>Enabled</label>
<input name="enabled" type="checkbox" checked>
</div>
</div>
</template>
</body>
<script src="options.js"></script>
</html>