-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
24 lines (21 loc) · 756 Bytes
/
options.html
File metadata and controls
24 lines (21 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>imagetabs</title>
</head>
<body>
<form id="preferences">
<h2>Included Domains</h2>
<textarea id="includedDomains" rows="10" cols="50"></textarea>
<h2>Excluded Domains</h2>
<textarea id="excludedDomains" rows="10" cols="50"></textarea>
<h2>Included File Extensions</h2>
<textarea id="includedExtensions" rows="10" cols="50"></textarea>
<h2>Excluded File Extensions</h2>
<textarea id="excludedExtensions" rows="10" cols="50"></textarea>
<button type="submit">Save Preferences</button>
</form>
<p>Total images opened: <span id="totalOpened">0</span></p>
<script src="options.js"></script>
</body>
</html>