-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathactivity-tracker.ts
More file actions
1057 lines (914 loc) · 25.9 KB
/
activity-tracker.ts
File metadata and controls
1057 lines (914 loc) · 25.9 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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Content Script Activity Tracker
* Captures user interactions on web pages
*/
import type {
UserInputData,
ClickData,
ScrollData,
FormSubmitData,
TextReadingData,
ElementInfo,
ContentReadingData,
YouTubeVideoData,
VideoWatchingData,
VideoCallData,
} from "@/types/activity-tracking";
import { ContentReadingTracker } from "./trackers/content-reading-tracker";
import { YouTubeTracker } from "./trackers/youtube-tracker";
import { VideoTracker } from "./trackers/video-tracker";
import { VideoCallTracker } from "./trackers/video-call-tracker";
import { DEFAULT_CAPTURE_CONFIG } from "@/types/activity-tracking";
import type { ActivityCaptureConfig } from "@/types/activity-tracking";
import { logError } from "@/utils/logger";
/**
* Get XPath for an element
*/
function getElementXPath(element: Element): string {
if (element.id) {
return `//*[@id="${element.id}"]`;
}
const parts: string[] = [];
let current: Element | null = element;
while (current && current.nodeType === Node.ELEMENT_NODE) {
let index = 0;
let sibling: Element | null = current;
while (sibling) {
if (
sibling.nodeType === Node.ELEMENT_NODE &&
sibling.tagName === current.tagName
) {
index++;
}
sibling = sibling.previousElementSibling;
}
const tagName = current.tagName.toLowerCase();
const part = index > 1 ? `${tagName}[${index}]` : tagName;
parts.unshift(part);
current = current.parentElement;
}
return parts.length ? `/${parts.join("/")}` : "";
}
/**
* Get CSS selector for an element
*/
function getElementSelector(element: Element): string {
if (element.id) {
return `#${element.id}`;
}
const path: string[] = [];
let current: Element | null = element;
while (current && current.nodeType === Node.ELEMENT_NODE) {
let selector = current.tagName.toLowerCase();
if (current.id) {
selector += `#${current.id}`;
path.unshift(selector);
break;
} else if (current.className && typeof current.className === "string") {
const classes = current.className.trim().split(/\s+/).filter(Boolean);
if (classes.length > 0) {
selector += `.${classes.join(".")}`;
}
}
path.unshift(selector);
current = current.parentElement;
// Limit depth
if (path.length >= 5) break;
}
return path.join(" > ");
}
/**
* Find associated label for an input element
*/
function findLabelForElement(element: Element): string | undefined {
if (!(element instanceof HTMLElement)) return undefined;
// Method 1: Check for wrapping label
let parent = element.parentElement;
while (parent) {
if (parent.tagName === "LABEL") {
return parent.textContent?.trim();
}
parent = parent.parentElement;
// Limit depth to avoid going too far up
if (parent && parent.tagName === "FORM") break;
}
// Method 2: Check for label with 'for' attribute
if (element.id) {
const label = document.querySelector(`label[for="${element.id}"]`);
if (label) {
return label.textContent?.trim();
}
}
// Method 3: Check aria-labelledby
const labelledBy = element.getAttribute("aria-labelledby");
if (labelledBy) {
const labelElement = document.getElementById(labelledBy);
if (labelElement) {
return labelElement.textContent?.trim();
}
}
// Method 4: Check nearby text (common pattern)
const prevSibling = element.previousElementSibling;
if (
prevSibling &&
prevSibling.tagName !== "INPUT" &&
prevSibling.tagName !== "BUTTON"
) {
const text = prevSibling.textContent?.trim();
if (text && text.length < 100) {
return text;
}
}
return undefined;
}
/**
* Extract element information with enhanced context
*/
function getElementInfo(element: Element): ElementInfo {
const info: ElementInfo = {
tagName: element.tagName.toLowerCase(),
};
if (element.id) info.id = element.id;
if (element.className && typeof element.className === "string") {
info.className = element.className;
}
if (element instanceof HTMLElement) {
// Type-safe property access for form elements
if (
element instanceof HTMLInputElement ||
element instanceof HTMLButtonElement ||
element instanceof HTMLSelectElement ||
element instanceof HTMLTextAreaElement
) {
if (element.name) info.name = element.name;
}
if (
element instanceof HTMLInputElement ||
element instanceof HTMLButtonElement
) {
if (element.type) info.type = element.type;
}
if (
element instanceof HTMLInputElement ||
element instanceof HTMLTextAreaElement
) {
if (element.placeholder) {
info.placeholder = element.placeholder;
}
if (element.autocomplete) {
info.autocomplete = element.autocomplete;
}
}
if (element.getAttribute("aria-label")) {
info.ariaLabel = element.getAttribute("aria-label") || undefined;
}
// Enhanced context
const label = findLabelForElement(element);
if (label) info.label = label;
const textContent = element.textContent?.trim();
if (textContent && textContent.length < 200) {
info.textContent = textContent;
}
if (element.title) info.title = element.title;
if (element.getAttribute("role")) {
info.role = element.getAttribute("role") || undefined;
}
}
info.xpath = getElementXPath(element);
info.selector = getElementSelector(element);
return info;
}
/**
* Check if content is sensitive
*/
function isSensitiveInput(element: Element): boolean {
if (!(element instanceof HTMLInputElement)) return false;
const type = element.type.toLowerCase();
const name = (element.name || "").toLowerCase();
const id = (element.id || "").toLowerCase();
const placeholder = (element.placeholder || "").toLowerCase();
const autocomplete = (element.autocomplete || "").toLowerCase();
// Sensitive input patterns
const sensitivePatterns = [
"password",
"passwd",
"pwd",
"secret",
"token",
"api",
"apikey",
"api_key",
"auth",
"authorization",
"bearer",
"credit",
"card",
"cardnumber",
"card-number",
"cvv",
"cvc",
"csc",
"ssn",
"social",
"pin",
"otp",
"verification",
"2fa",
"mfa",
"private",
"privatekey",
"private_key",
];
// Check type
if (type === "password") return true;
// Check autocomplete attribute (most reliable)
if (
autocomplete.includes("password") ||
autocomplete.includes("credit-card") ||
autocomplete.includes("cc-")
) {
return true;
}
// Check against all fields
const fieldsToCheck = [name, id, placeholder];
for (const field of fieldsToCheck) {
for (const pattern of sensitivePatterns) {
if (field.includes(pattern)) {
return true;
}
}
}
// Check for credit card number pattern in value (basic check)
if (element.value) {
const digitsOnly = element.value.replace(/\D/g, "");
// Check if it looks like a credit card (13-19 digits)
if (digitsOnly.length >= 13 && digitsOnly.length <= 19) {
return true;
}
}
return false;
}
/**
* Redact sensitive content
*/
function redactContent(content: string): string {
return `[REDACTED: ${content.length} characters]`;
}
/**
* Map HTML input type to our tracked input types
*/
function mapInputType(
element: HTMLInputElement | HTMLTextAreaElement,
): "text" | "password" | "email" | "search" | "number" | "other" {
if (element instanceof HTMLTextAreaElement) {
return "text";
}
const type = element.type.toLowerCase();
switch (type) {
case "text":
case "password":
case "email":
case "search":
case "number":
return type;
default:
return "other";
}
}
class ActivityTracker {
private isActive: boolean = false;
private listeners: Map<string, EventListener> = new Map();
private lastScrollTime: number = 0;
private readonly SCROLL_THROTTLE_MS = 2000; // OPTIMIZED: 2s for quick reading detection
private readonly DEBOUNCE_INPUT_MS = 500;
private inputDebounceTimers: Map<Element, NodeJS.Timeout> = new Map();
private pageStartTime: number = 0;
private config: ActivityCaptureConfig = DEFAULT_CAPTURE_CONFIG;
// New intelligent trackers
private contentReadingTracker: ContentReadingTracker | null = null;
private youtubeTracker: YouTubeTracker | null = null;
private videoTrackers: Map<HTMLVideoElement, VideoTracker> = new Map();
private videoCallTracker: VideoCallTracker | null = null;
// Periodic capture timers
private captureCheckInterval: NodeJS.Timeout | null = null;
private videoCheckInterval: NodeJS.Timeout | null = null;
private readonly CAPTURE_CHECK_INTERVAL_MS = 60000; // OPTIMIZED: 60s as backup only (primary is scroll-stop)
// Deprecated (keeping for backward compatibility)
private textCaptureTimer: NodeJS.Timeout | null = null;
private readonly TEXT_CAPTURE_DELAY_MS = 10000;
private readonly MAX_TEXT_LENGTH = 10000;
/**
* Start tracking
*/
start(): void {
if (this.isActive) {
return;
}
this.isActive = true;
this.pageStartTime = Date.now();
this.setupListeners();
this.initializeSpecializedTrackers();
this.startPeriodicCapture();
// Deprecated: old text capture (for backward compatibility)
if (this.config.trackTextReading) {
this.startTextCaptureTimer();
}
}
/**
* Stop tracking
*/
stop(): void {
if (!this.isActive) return;
// Capture final data before stopping
this.captureFinalData();
this.isActive = false;
this.removeListeners();
this.cleanupSpecializedTrackers();
this.stopPeriodicCapture();
this.stopTextCaptureTimer();
}
/**
* Setup event listeners
*/
private setupListeners(): void {
// Input tracking
const inputListener = this.handleInput.bind(this);
document.addEventListener("input", inputListener, true);
this.listeners.set("input", inputListener);
// Click tracking
const clickListener = this.handleClick.bind(this);
document.addEventListener("click", clickListener, true);
this.listeners.set("click", clickListener);
// Scroll tracking - only if content reading or scroll tracking is enabled
if (this.config.trackScrolls || this.config.trackContentReading) {
const scrollListener = this.handleScroll.bind(this);
window.addEventListener("scroll", scrollListener, { passive: true });
this.listeners.set("scroll", scrollListener);
}
// Form submit tracking
const submitListener = this.handleFormSubmit.bind(this);
document.addEventListener("submit", submitListener, true);
this.listeners.set("submit", submitListener);
}
/**
* Remove event listeners
*/
private removeListeners(): void {
const inputListener = this.listeners.get("input");
if (inputListener) {
document.removeEventListener("input", inputListener, true);
}
const clickListener = this.listeners.get("click");
if (clickListener) {
document.removeEventListener("click", clickListener, true);
}
const scrollListener = this.listeners.get("scroll");
if (scrollListener) {
window.removeEventListener("scroll", scrollListener);
}
const submitListener = this.listeners.get("submit");
if (submitListener) {
document.removeEventListener("submit", submitListener, true);
}
this.listeners.clear();
this.inputDebounceTimers.clear();
}
/**
* Handle input events
*/
private handleInput(event: Event): void {
const target = event.target;
if (
!(target instanceof HTMLInputElement) &&
!(target instanceof HTMLTextAreaElement)
) {
return;
}
// Clear existing debounce timer
const existingTimer = this.inputDebounceTimers.get(target);
if (existingTimer) {
clearTimeout(existingTimer);
}
// Set new debounce timer
const timer = setTimeout(() => {
this.captureInput(target);
this.inputDebounceTimers.delete(target);
}, this.DEBOUNCE_INPUT_MS);
this.inputDebounceTimers.set(target, timer);
}
/**
* Capture input data
*/
private captureInput(element: HTMLInputElement | HTMLTextAreaElement): void {
const isSensitive = isSensitiveInput(element);
const content = isSensitive ? redactContent(element.value) : element.value;
const data: UserInputData = {
type: "user_input",
content,
inputType: mapInputType(element),
elementInfo: getElementInfo(element),
pageUrl: window.location.href,
pageTitle: document.title,
tabId: -1, // Will be set by background script
isRedacted: isSensitive,
};
this.sendToBackground("user_input", data);
}
/**
* Handle click events
*/
private handleClick(event: Event): void {
if (!(event instanceof MouseEvent)) return;
const target = event.target;
if (!(target instanceof Element)) return;
const data: ClickData = {
type: "click",
elementInfo: getElementInfo(target),
pageUrl: window.location.href,
pageTitle: document.title,
tabId: -1, // Will be set by background script
position: {
x: event.clientX,
y: event.clientY,
},
viewport: {
width: window.innerWidth,
height: window.innerHeight,
},
isRightClick: event.button === 2,
};
this.sendToBackground("click", data);
}
/**
* Handle scroll events (throttled)
*/
private handleScroll(): void {
const now = Date.now();
if (now - this.lastScrollTime < this.SCROLL_THROTTLE_MS) {
return;
}
this.lastScrollTime = now;
const scrollY = window.scrollY;
// Update content reading tracker with scroll (lightweight operation)
if (this.contentReadingTracker) {
this.contentReadingTracker.recordScroll(scrollY);
}
// Send scroll event (if explicitly enabled - disabled by default for performance)
if (this.config.trackScrolls) {
const scrollX = window.scrollX;
const pageHeight = document.documentElement.scrollHeight;
const viewportHeight = window.innerHeight;
const scrollDepth = ((scrollY + viewportHeight) / pageHeight) * 100;
const data: ScrollData = {
type: "scroll",
pageUrl: window.location.href,
pageTitle: document.title,
tabId: -1, // Will be set by background script
scrollPosition: {
x: scrollX,
y: scrollY,
},
scrollDepth: Math.min(scrollDepth, 100),
pageHeight,
};
this.sendToBackground("scroll", data);
}
}
/**
* Handle form submit events
*/
private handleFormSubmit(event: Event): void {
const target = event.target;
if (!(target instanceof HTMLFormElement)) return;
const formElements = target.elements;
const fieldCount = formElements.length;
const data: FormSubmitData = {
type: "form_submit",
formInfo: getElementInfo(target),
pageUrl: window.location.href,
pageTitle: document.title,
tabId: -1, // Will be set by background script
fieldCount,
method: target.method,
action: target.action,
};
this.sendToBackground("form_submit", data);
}
/**
* Send activity data to background script
*/
private sendToBackground(
type: string,
data:
| UserInputData
| ClickData
| ScrollData
| FormSubmitData
| TextReadingData
| ContentReadingData
| YouTubeVideoData
| VideoWatchingData
| VideoCallData,
): void {
try {
chrome.runtime.sendMessage({
type: "ACTIVITY_CAPTURED",
activityType: type,
data,
pageUrl: window.location.href,
pageTitle: document.title,
timestamp: Date.now(),
});
} catch (error) {
logError("Failed to send activity to background:", error);
}
}
/**
* Initialize specialized trackers based on page type
*/
private initializeSpecializedTrackers(): void {
// Initialize content reading tracker (for most pages)
if (this.config.trackContentReading) {
try {
this.contentReadingTracker = new ContentReadingTracker(
this.config.maxTextLength,
);
// SMART: Register scroll-stop callback for intelligent capture
this.contentReadingTracker.setScrollStopCallback(() => {
this.onUserStoppedScrolling();
});
} catch (error) {
logError(
"❌ [ActivityTracker] Failed to init content reading tracker:",
error,
);
}
}
// Initialize YouTube tracker
if (this.config.trackYouTubeVideos && YouTubeTracker.isYouTubePage()) {
try {
this.youtubeTracker = new YouTubeTracker();
this.youtubeTracker.start();
} catch (error) {
logError("❌ [ActivityTracker] Failed to init YouTube tracker:", error);
}
}
// Initialize video call tracker
if (this.config.trackVideoCalls) {
try {
const platform = VideoCallTracker.detectPlatform();
if (platform) {
this.videoCallTracker = new VideoCallTracker(
platform,
window.location.href,
);
this.videoCallTracker.start(this.config.videoCalls.captureCaptions);
}
} catch (error) {
logError(
"❌ [ActivityTracker] Failed to init video call tracker:",
error,
);
}
}
// Initialize video trackers
if (this.config.trackVideoWatching) {
try {
this.initializeVideoTrackers();
} catch (error) {
logError("❌ [ActivityTracker] Failed to init video trackers:", error);
}
}
}
/**
* Initialize trackers for HTML5 videos
*/
private initializeVideoTrackers(): void {
const videos = VideoTracker.findVideoElements();
videos.forEach((video) => {
if (!this.videoTrackers.has(video)) {
const tracker = new VideoTracker(video);
tracker.start();
this.videoTrackers.set(video, tracker);
}
});
// Only set interval once (prevent memory leak)
if (!this.videoCheckInterval && this.isActive) {
this.videoCheckInterval = setInterval(() => {
if (this.isActive && this.config.trackVideoWatching) {
const newVideos = VideoTracker.findVideoElements();
newVideos.forEach((video) => {
if (!this.videoTrackers.has(video)) {
const tracker = new VideoTracker(video);
tracker.start();
this.videoTrackers.set(video, tracker);
}
});
}
}, 5000);
}
}
/**
* Cleanup specialized trackers
*/
private cleanupSpecializedTrackers(): void {
if (this.contentReadingTracker) {
this.contentReadingTracker.destroy();
this.contentReadingTracker = null;
}
if (this.youtubeTracker) {
this.youtubeTracker.destroy();
this.youtubeTracker = null;
}
if (this.videoCallTracker) {
this.videoCallTracker.stop();
this.videoCallTracker = null;
}
this.videoTrackers.forEach((tracker) => tracker.stop());
this.videoTrackers.clear();
// Fix: Clear video check interval
if (this.videoCheckInterval) {
clearInterval(this.videoCheckInterval);
this.videoCheckInterval = null;
}
}
/**
* Start periodic capture check
* OPTIMIZED: Use requestIdleCallback to avoid blocking main thread
*/
private startPeriodicCapture(): void {
const scheduleNextCheck = () => {
this.captureCheckInterval = setTimeout(() => {
// Run capture check when browser is idle
if (typeof window.requestIdleCallback === "function") {
window.requestIdleCallback(
() => {
this.checkAndCapture();
scheduleNextCheck(); // Schedule next check after completion
},
{ timeout: 5000 }, // Run within 5 seconds even if not idle
);
} else {
this.checkAndCapture();
scheduleNextCheck();
}
}, this.CAPTURE_CHECK_INTERVAL_MS);
};
scheduleNextCheck();
}
/**
* Stop periodic capture
*/
private stopPeriodicCapture(): void {
if (this.captureCheckInterval) {
clearInterval(this.captureCheckInterval);
this.captureCheckInterval = null;
}
}
/**
* Check and capture data if thresholds are met
* OPTIMIZED: Lazy content extraction - only extract when capturing
*/
private async checkAndCapture(): Promise<void> {
if (!this.isActive) return;
// Check content reading
if (this.contentReadingTracker && this.config.trackContentReading) {
// OPTIMIZED: Quick pre-check before expensive operations
const { minWordCount } = this.config.contentReading;
const currentWordCount =
this.contentReadingTracker.getMetrics().estimatedWordsRead;
const viewDurationSeconds =
this.contentReadingTracker.getViewDuration() / 1000;
// Quick threshold check - skip if definitely not ready
if (currentWordCount < minWordCount * 0.5 || viewDurationSeconds < 3) {
return;
}
// OPTIMIZED: Update visible content (fast with caching)
this.contentReadingTracker.updateVisibleContent();
// Simple check: has user read the visible content?
const shouldCapture =
this.contentReadingTracker.shouldCapture(minWordCount);
if (shouldCapture) {
const data = this.contentReadingTracker.capture();
if (data) {
this.sendToBackground("content_reading", data);
// DEDUPLICATION: Mark this content as captured
this.contentReadingTracker.markContentAsCaptured();
// Don't reset tracker - keep accumulating content
}
}
}
// Check YouTube
if (this.youtubeTracker && this.config.trackYouTubeVideos) {
const data = await this.youtubeTracker.capture(
this.config.youTube.captureTranscripts,
);
if (data && data.watchDuration >= this.config.youTube.minWatchDuration) {
this.sendToBackground("youtube_video", data);
}
}
// Check videos
if (this.config.trackVideoWatching) {
this.videoTrackers.forEach((tracker, video) => {
if (tracker.meetsThreshold(10)) {
// 10 seconds minimum
const data = tracker.capture();
if (data) {
this.sendToBackground("video_watching", data);
}
}
});
}
}
/**
* Called when user stops scrolling (SMART detection)
* This is the PRIMARY capture mechanism - scroll-stop based
*/
private async onUserStoppedScrolling(): Promise<void> {
if (!this.isActive || !this.contentReadingTracker) return;
const { minWordCount } = this.config.contentReading;
// Check if should capture
const shouldCapture =
this.contentReadingTracker.shouldCapture(minWordCount);
if (shouldCapture) {
const data = this.contentReadingTracker.capture();
if (data) {
this.sendToBackground("content_reading", data);
// DEDUPLICATION: Mark this content as captured
this.contentReadingTracker.markContentAsCaptured();
// Don't reset tracker - keep accumulating content
// This allows continuous tracking on the same page
}
}
}
/**
* Capture final data before stopping
*/
private async captureFinalData(): Promise<void> {
// Capture content reading
if (this.contentReadingTracker) {
const data = this.contentReadingTracker.capture();
if (data) {
this.sendToBackground("content_reading", data);
}
}
// Capture YouTube
if (this.youtubeTracker) {
const data = await this.youtubeTracker.capture(
this.config.youTube.captureTranscripts,
);
if (data) {
this.sendToBackground("youtube_video", data);
}
}
// Capture video call
if (this.videoCallTracker) {
const data = this.videoCallTracker.capture();
if (data) {
this.sendToBackground("video_call", data);
}
}
// Capture videos
this.videoTrackers.forEach((tracker) => {
const data = tracker.capture();
if (data) {
this.sendToBackground("video_watching", data);
}
});
}
/**
* Start text capture timer (deprecated)
*/
private startTextCaptureTimer(): void {
// Clear any existing timer
this.stopTextCaptureTimer();
// Set timer to capture text after delay
this.textCaptureTimer = setTimeout(() => {
this.captureVisibleText();
}, this.TEXT_CAPTURE_DELAY_MS);
}
/**
* Stop text capture timer
*/
private stopTextCaptureTimer(): void {
if (this.textCaptureTimer) {
clearTimeout(this.textCaptureTimer);
this.textCaptureTimer = null;
}
}
/**
* Extract visible text from the viewport
*/
private getVisibleText(): string {
const viewportHeight = window.innerHeight;
const scrollY = window.scrollY;
const visibleTop = scrollY;
const visibleBottom = scrollY + viewportHeight;
// Get all text nodes in the visible area
const textNodes: string[] = [];
// Function to check if element is in viewport
const isInViewport = (element: Element): boolean => {
const rect = element.getBoundingClientRect();
const elemTop = rect.top + scrollY;
const elemBottom = rect.bottom + scrollY;
return elemBottom >= visibleTop && elemTop <= visibleBottom;
};
// Get main content elements (paragraphs, headings, list items, etc.)
const contentSelectors = [
"p",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6",
"li",
"td",
"th",
"blockquote",
"pre",
"article",
"section",
"main",
"div[role='main']",
"div[class*='content']",
"div[class*='article']",
"div[class*='text']",
];
const elements = document.querySelectorAll(contentSelectors.join(", "));
for (const element of elements) {
if (isInViewport(element)) {
const text = element.textContent?.trim();
if (text && text.length > 20) {
// Only include substantial text
textNodes.push(text);
}
}
}
return textNodes.join("\n\n");
}
/**
* Capture visible text content
*/
private captureVisibleText(): void {
if (!this.isActive) return;
try {
const visibleText = this.getVisibleText();
if (!visibleText || visibleText.length < 50) {
// Not enough text to capture, might be an image-heavy page
return;
}
const textLength = visibleText.length;
let capturedText = visibleText;
let truncated = false;
// Truncate if too long
if (textLength > this.MAX_TEXT_LENGTH) {
capturedText = visibleText.substring(0, this.MAX_TEXT_LENGTH);