-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
38 lines (38 loc) · 1.24 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>EtherScan.io Address Notes Scraper</title>
<link rel="stylesheet" href="popup.css">
<script src="scrape.js"></script>
</head>
<body>
<div>
<h3>
EtherScan Address Notes Scraper
</h3>
</div>
<div id="scrape">
<button id="scrapeButton">SCRAPE</button>
</div>
<div id="prompt">
<p>
Open <i>'etherscan.io/mynotes_address'</i>?
</p>
<button id="yesButton">YES</button>
<button id="noButton">NO</button>
</div>
<div id="notes">
<div id="search">
<input id="searchInput" type="text" placeholder="Search.." name="search">
<button id="searchButton" type="submit">Submit</button>
</div>
<div id="notes-table"></div>
<button id="downloadButton">DOWNLOAD</button>
<a id="downloadAnchor"></a>
</div>
<script src="popup.js"></script>
</body>
</html>