-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
39 lines (34 loc) · 1.09 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Steam cards trading</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<script src="clipboard.min.js"></script>
<script src="popup.js"></script>
<style type="text/css">
body {
width: 350px;
font-family: "Open Sans";
}
button {
margin-top: 10px;
}
</style>
</head>
<body>
<div class="content">
<h2>Exchange by name</h2>
<div class="tradeByName"></div>
<button type="button" class="btn-name">copy</button>
<h2>Exchange by order</h2>
<div class="tradeByOrder"></div>
<button type="button" class="btn-key">copy</button>
</div>
<div style="margin-top: 30px;">
<a href="https://github.com/HawkeyePierce89/Steam-card-exchange-assistant" target="_blank">Github</a>
<br />
<a href="https://github.com/HawkeyePierce89/Steam-card-exchange-assistant/issues" target="_blank">Report a bug</a>
</div>
</body>
</html>