-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
307 lines (266 loc) · 6.92 KB
/
popup.html
File metadata and controls
307 lines (266 loc) · 6.92 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Feedback Capture</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 360px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(145deg, #0f172a 0%, #1d4ed8 100%);
color: white;
}
.header {
padding: 18px 20px 14px;
}
.header h1 {
font-size: 20px;
margin-bottom: 6px;
}
.header p {
font-size: 13px;
opacity: 0.85;
line-height: 1.4;
}
.content {
background: #f8fafc;
color: #0f172a;
padding: 18px 20px 20px;
border-radius: 16px 16px 0 0;
}
.section {
margin-bottom: 18px;
}
.section:last-child {
margin-bottom: 0;
}
.section-title {
font-size: 13px;
font-weight: 700;
color: #1d4ed8;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.warning,
.info {
padding: 10px 12px;
border-radius: 10px;
font-size: 12px;
line-height: 1.5;
margin-bottom: 14px;
}
.warning {
background: #fff7ed;
border: 1px solid #fdba74;
color: #9a3412;
}
.info {
background: #eff6ff;
border: 1px solid #93c5fd;
color: #1d4ed8;
}
.mode-switch {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.mode-option {
position: relative;
}
.mode-option input {
position: absolute;
opacity: 0;
pointer-events: none;
}
.mode-label {
display: block;
padding: 10px 12px;
border-radius: 10px;
border: 1px solid #cbd5e1;
background: white;
cursor: pointer;
transition: all 0.2s ease;
}
.mode-label strong {
display: block;
font-size: 13px;
margin-bottom: 3px;
}
.mode-label span {
display: block;
font-size: 11px;
color: #475569;
line-height: 1.4;
}
.mode-option input:checked + .mode-label {
border-color: #2563eb;
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
background: #eff6ff;
}
.status-grid {
display: grid;
gap: 10px;
}
.status-card {
background: white;
border-radius: 10px;
padding: 12px;
border: 1px solid #e2e8f0;
}
.status-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #64748b;
margin-bottom: 4px;
}
.status-value {
font-size: 14px;
font-weight: 600;
color: #0f172a;
word-break: break-word;
}
.status-value.active {
color: #15803d;
}
.btn {
width: 100%;
padding: 12px 14px;
border: none;
border-radius: 10px;
background: #2563eb;
color: white;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: transform 0.15s ease, background 0.2s ease;
font-family: inherit;
}
.btn:hover {
background: #1d4ed8;
transform: translateY(-1px);
}
.btn:disabled {
background: #94a3b8;
cursor: not-allowed;
transform: none;
}
.btn.stop {
background: #dc2626;
}
.btn.stop:hover {
background: #b91c1c;
}
.instructions {
font-size: 12px;
line-height: 1.6;
color: #475569;
padding-left: 18px;
}
.instructions li {
margin-bottom: 6px;
}
.shortcut {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
border-radius: 10px;
background: white;
border: 1px solid #e2e8f0;
font-size: 12px;
}
.shortcut-key {
background: #0f172a;
color: white;
border-radius: 6px;
padding: 3px 8px;
font-family: 'Courier New', monospace;
font-size: 11px;
}
.footer {
padding: 14px 20px 18px;
text-align: center;
font-size: 11px;
opacity: 0.75;
}
</style>
</head>
<body>
<div class="header">
<h1>Dev Feedback Capture</h1>
<p>Capture element notes on live pages or screenshot regions on PDFs and browser surfaces.</p>
</div>
<div class="content">
<div id="warning" class="warning" style="display: none;"></div>
<div id="info" class="info" style="display: none;"></div>
<div class="section">
<div class="section-title">Capture Mode</div>
<div class="mode-switch">
<label class="mode-option">
<input type="radio" name="capture-mode" value="element" checked>
<span class="mode-label">
<strong>Element</strong>
<span>Inspect and click page elements.</span>
</span>
</label>
<label class="mode-option">
<input type="radio" name="capture-mode" value="region">
<span class="mode-label">
<strong>Region</strong>
<span>Crop part of the current viewport, including PDFs.</span>
</span>
</label>
</div>
</div>
<div class="section">
<button class="btn" id="primary-action-btn" disabled>Start Element Mode</button>
</div>
<div class="section">
<div class="section-title">Current Tab</div>
<div class="status-grid">
<div class="status-card">
<div class="status-label">Page</div>
<div class="status-value" id="page-label">No active tab</div>
</div>
<div class="status-card">
<div class="status-label">Element Mode</div>
<div class="status-value" id="feedback-mode-status">OFF</div>
</div>
<div class="status-card">
<div class="status-label">Saved Items</div>
<div class="status-value" id="item-count">0</div>
</div>
</div>
</div>
<div class="section">
<div class="section-title">Quick Start</div>
<ol class="instructions">
<li>Pick <strong>Element</strong> for clickable DOM capture or <strong>Region</strong> for PDFs and screenshots.</li>
<li>Use the primary button to start the selected workflow on the current tab.</li>
<li>Region capture opens a separate editor tab where you draw the box and add the note.</li>
<li>Re-open the page later to re-export JSON, Markdown, or the AI prompt from the history panel.</li>
</ol>
</div>
<div class="section">
<div class="section-title">Keyboard Shortcut</div>
<div class="shortcut">
<span>Toggle element mode</span>
<span class="shortcut-key" id="shortcut-label">Ctrl+Shift+F</span>
</div>
</div>
</div>
<div class="footer">
Local `file://` PDFs may require enabling "Allow access to file URLs" for this extension.
</div>
<script src="shared.js"></script>
<script src="popup.js"></script>
</body>
</html>