-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebaypricinginfo.html
83 lines (72 loc) · 2.48 KB
/
ebaypricinginfo.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eBay Pricing Summary Tool</title>
</head>
<body>
<h1>eBay Pricing Summary Tool v1.0</h1>
<h3>How do you use it? (instructions for the nerds)</h3>
<ol>
<li>
Go to <a href="https://ebay.com" target="_blank">eBay</a> and search for
the item you want to flip. Go back to this page.
</li>
<li>
Select everything with CTRL-A or CMD-A if you're on a Mac. Copy the
selection.
</li>
<li>
Paste the selection into the box below. Optionally configure how you
want to calculate your maximum profit.
</li>
<li>Click the "Analyze" button below and read the results.</li>
</ol>
<h3>How do you use it? (instructions for the non tech-savvy people)</h3>
<ol>
<li>
Go to <a href="https://ebay.com" target="_blank">eBay</a> and search for
the item you want to flip. Don't do anything else.
</li>
<li>
Go back to the eBay page and press CTRL-A (COMMAND-A on a Mac) to select
all of the page. Copy (CTRL-C or COMMAND-C) everything. Make sure that
everything is still highlighted when you copied and pasted!
</li>
<li>
Click the box below and paste your selection (Just press CTRL-V or
COMMAND-V). Optionally configure how you want to calculate your maximum
profit by clicking on the box below the "Mode" heading, selecting which
option you want, and clicking outside of the box.
</li>
<li>Click the "Analyze" button below and read the results.</li>
</ol>
<hr />
<h3>Mode:</h3>
<select name="mode" id="mode">
<option value="quick-flip">Quick Flip</option>
<option value="most-profit">Maximum Profit</option>
</select>
<br />
<br />
<h3>Input (NOTE: this only works for items priced under $10,000!):</h3>
<textarea
name="input"
id="input"
placeholder="Paste in the page here."
cols="125"
rows="30"
></textarea>
<br />
<br />
<button id="analyze">Analyze</button>
<div id="results">
<h3>Results</h3>
<p id="average-shipping">Average Shipping Price: $0</p>
<p id="average-price">Average Price: $0</p>
<h4 id="recommended-price">Recommended Price: $0</h4>
</div>
<script type="module" src="js/index.js"></script>
</body>
</html>