-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
26 lines (26 loc) · 781 Bytes
/
popup.html
File metadata and controls
26 lines (26 loc) · 781 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
25
26
<!doctype html>
<html>
<head>
<title>Grabber</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="config">
<label for="selector">Selector</label>
<input id="selector" type="text" value="img:not([src=''])" placeholder="Selector">
<button id="try">Try</button>
</div>
<div id="controls" class="hide">
<button id="download">Download</button>
<button id="selectAll">Select All</button>
<button id="deselectAll">Deselect All</button>
<button id="back">Edit Selector</button>
</div>
<div id="assets" class="hide">
Loading...
</div>
<script src="src/util.js"></script>
<script src="src/assets_view.js"></script>
<script src="src/grabber.js"></script>
</body>
</html>