-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.js
More file actions
400 lines (340 loc) Β· 9.71 KB
/
popup.js
File metadata and controls
400 lines (340 loc) Β· 9.71 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
// sidebar.js
let myWindowId;
// Get current window info
browser.windows.getCurrent({ populate: true }).then((windowInfo) => {
myWindowId = windowInfo.id;
console.log('Sidebar loaded for window:', myWindowId);
});
// Wait for DOM to be fully loaded
document.addEventListener('DOMContentLoaded', function() {
console.log('Sidebar DOM loaded');
// Initialize sidebar UI
initializeSidebar();
});
function initializeSidebar() {
// Create main container if it doesn't exist
if (!document.getElementById('sidebar-content')) {
const container = document.createElement('div');
container.id = 'sidebar-content';
container.innerHTML = `
<div class="sidebar-header">
<h2>BlackOCR</h2>
<p>Screen capture and OCR tool</p>
</div>
<div class="sidebar-main">
<!-- Capture Options -->
<section class="capture-section">
<h3>Screen Capture</h3>
<button id="captureBtn" class="btn-primary">
<span class="icon">π·</span>
<span class="text">Capture Region</span>
</button>
<div class="capture-history">
<h4>Recent Captures</h4>
<div id="captureList" class="capture-list"></div>
</div>
</section>
<!-- OCR Options -->
<section class="ocr-section">
<h3>OCR Settings</h3>
<div class="ocr-options">
<select id="languageSelect" class="language-select">
<option value="eng">English</option>
<option value="spa">Spanish</option>
<option value="fra">French</option>
<option value="deu">German</option>
</select>
<button id="runOCR" class="btn-secondary" disabled>
<span class="icon">π</span>
<span class="text">Extract Text</span>
</button>
</div>
</section>
<!-- Result Section -->
<section class="result-section">
<h3>Extracted Text</h3>
<div class="result-actions">
<button id="copyText" class="btn-icon" title="Copy to Clipboard">
<span class="icon">π</span>
</button>
<button id="saveText" class="btn-icon" title="Save as File">
<span class="icon">πΎ</span>
</button>
</div>
<textarea id="extractedText" class="result-text" readonly
placeholder="Captured text will appear here..."></textarea>
</section>
</div>
<div class="sidebar-footer">
<div id="status" class="status-text">Ready to capture</div>
</div>
`;
document.body.appendChild(container);
}
// Add event listeners
addEventListeners();
// Add basic styling
addStyles();
}
function addEventListeners() {
// Capture button
const captureBtn = document.getElementById('captureBtn');
if (captureBtn) {
captureBtn.addEventListener('click', handleCapture);
}
// Get current tab button
const getCurrentTab = document.getElementById('getCurrentTab');
if (getCurrentTab) {
getCurrentTab.addEventListener('click', handleGetCurrentTab);
}
// Test button
const testBtn = document.getElementById('testBtn');
if (testBtn) {
testBtn.addEventListener('click', handleTest);
}
}
function addStyles() {
if (!document.getElementById('sidebar-styles')) {
const style = document.createElement('style');
style.id = 'sidebar-styles';
style.textContent = `
body {
width: 300px;
height: 500px;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background-color: #ffffff;
color: #333;
}
#sidebar-content {
display: flex;
flex-direction: column;
height: 100%;
}
.sidebar-header {
background: linear-gradient(135deg, #1a73e8 0%, #185abc 100%);
color: white;
padding: 16px;
text-align: center;
}
.sidebar-header h2 {
margin: 0 0 4px 0;
font-size: 18px;
}
.sidebar-header p {
margin: 0;
font-size: 12px;
opacity: 0.9;
}
.sidebar-main {
flex: 1;
padding: 16px;
overflow-y: auto;
}
section {
margin-bottom: 20px;
}
h3 {
font-size: 14px;
color: #5f6368;
margin: 0 0 12px 0;
}
h4 {
font-size: 12px;
color: #5f6368;
margin: 12px 0 8px 0;
}
.btn-primary {
width: 100%;
padding: 12px;
background: #1a73e8;
color: white;
border: none;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: background-color 0.2s;
}
.btn-primary:hover {
background: #185abc;
}
.capture-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.language-select {
width: 100%;
padding: 8px;
margin-bottom: 8px;
border: 1px solid #dadce0;
border-radius: 4px;
font-size: 14px;
}
.result-text {
width: 100%;
height: 120px;
padding: 8px;
border: 1px solid #dadce0;
border-radius: 4px;
font-size: 13px;
resize: vertical;
margin-top: 8px;
}
.result-actions {
display: flex;
gap: 8px;
margin-bottom: 8px;
}
.btn-icon {
padding: 6px;
background: none;
border: 1px solid #dadce0;
border-radius: 4px;
cursor: pointer;
}
.btn-icon:hover {
background: #f1f3f4;
}
.sidebar-footer {
padding: 12px 16px;
background: #f8f9fa;
border-top: 1px solid #dadce0;
}
.status-text {
font-size: 12px;
color: #5f6368;
}
.sidebar-actions {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
.btn-primary, .btn-secondary {
padding: 12px 16px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
}
.btn-primary {
background-color: #3498db;
color: white;
}
.btn-primary:hover {
background-color: #2980b9;
}
.btn-secondary {
background-color: #ecf0f1;
color: #2c3e50;
}
.btn-secondary:hover {
background-color: #d5dbdb;
}
.output-area {
background-color: white;
border: 1px solid #ddd;
border-radius: 6px;
padding: 16px;
min-height: 100px;
font-size: 14px;
line-height: 1.4;
}
.success {
color: #27ae60;
}
.error {
color: #e74c3c;
}
.info {
color: #3498db;
}
`;
document.head.appendChild(style);
}
}
// Event handlers
async function handleCapture() {
updateStatus('Starting screen capture...');
try {
// Request tab capture permission
const tabs = await browser.tabs.query({ active: true, currentWindow: true });
if (!tabs[0]) throw new Error('No active tab found');
// Minimize popup
window.close();
// Send capture request to content script
await browser.tabs.sendMessage(tabs[0].id, {
action: 'startCapture',
captureType: 'region'
});
} catch (error) {
updateStatus('Error: ' + error.message);
console.error('Capture error:', error);
}
}
function updateStatus(message) {
const status = document.getElementById('status');
if (status) {
status.textContent = message;
}
}
function handleGetCurrentTab() {
updateOutput('π Getting current tab info...', 'info');
browser.tabs.query({ active: true, currentWindow: true }).then((tabs) => {
if (tabs[0]) {
const tab = tabs[0];
const info = `
<strong>Current Tab Info:</strong><br>
Title: ${tab.title}<br>
URL: ${tab.url}<br>
ID: ${tab.id}<br>
Status: ${tab.status}
`;
updateOutput(info, 'success');
}
}).catch((error) => {
updateOutput('β Error: ' + error.message, 'error');
});
}
function handleTest() {
updateOutput('π Testing sidebar functionality...', 'info');
// Test basic browser API access
Promise.all([
browser.windows.getCurrent(),
browser.tabs.query({ active: true, currentWindow: true })
]).then(([window, tabs]) => {
const info = `
<strong>β
Sidebar Test Results:</strong><br>
Window ID: ${window.id}<br>
Active tabs: ${tabs.length}<br>
Current time: ${new Date().toLocaleTimeString()}<br>
Extension APIs: Working β
`;
updateOutput(info, 'success');
}).catch((error) => {
updateOutput('β Test failed: ' + error.message, 'error');
});
}
function updateOutput(message, type = 'info') {
const output = document.getElementById('output');
if (output) {
output.innerHTML = `<div class="${type}">${message}</div>`;
}
}
// Listen for messages from other parts of the extension
browser.runtime.onMessage.addListener((message, sender, sendResponse) => {
console.log('Sidebar received message:', message);
if (message.action === 'updateSidebar') {
updateOutput(message.content, message.type || 'info');
}
sendResponse({ received: true });
});
console.log('BlackOCR Sidebar script loaded');