-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
104 lines (87 loc) · 1.94 KB
/
popup.html
File metadata and controls
104 lines (87 loc) · 1.94 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
width: 300px;
padding: 20px;
font-family: Arial, sans-serif;
margin: 0;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.header h2 {
margin: 0;
color: #333;
font-size: 18px;
}
.instructions {
background: #f8f9fa;
padding: 15px;
border-radius: 5px;
margin-bottom: 15px;
line-height: 1.4;
}
.button {
width: 100%;
padding: 12px;
background: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
margin-bottom: 10px;
}
.button:hover {
background: #0056b3;
}
.button:disabled {
background: #6c757d;
cursor: not-allowed;
}
.status {
text-align: center;
padding: 10px;
border-radius: 5px;
margin-top: 10px;
font-size: 14px;
}
.status.success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.status.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.status.info {
background: #d1ecf1;
color: #0c5460;
border: 1px solid #bee5eb;
}
</style>
</head>
<body>
<div class="header">
<h2>📋 AutoTrader Ownership Checker</h2>
</div>
<div class="instructions">
<strong>How to use:</strong>
<ol>
<li>Go to an AutoTrader search results page</li>
<li>Click "Check Ownership" to fetch ownership data for all visible cars</li>
<li>Wait for the process to complete</li>
</ol>
</div>
<button id="checkOwnership" class="button">Check Ownership</button>
<button id="clearData" class="button" style="background: #6c757d;">Clear Data</button>
<div id="status" class="status" style="display: none;"></div>
<script src="popup.js"></script>
</body>
</html>