-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.ts
68 lines (60 loc) · 1.55 KB
/
content.ts
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
import "./custom.css";
import { type Flags, isPanelVisible, setFlags } from "./content/feature-flags";
import { mouse } from "./content/mouse";
import { thingsPopup } from "./content/things-popup";
import { timeCounter } from "./content/time-counter";
import { requestTracker } from "./content/request-tracker";
mouse.monitor();
function updateEverySecond(): void {
if (isPanelVisible("things")) {
thingsPopup.renderThingsSection();
}
if (isPanelVisible("words")) {
thingsPopup.renderWordsSection();
}
if (isPanelVisible("mouse")) {
thingsPopup.renderMouseSection();
}
if (isPanelVisible("tabs")) {
thingsPopup.renderTabsSection();
}
if (isPanelVisible("cookies")) {
thingsPopup.renderCookiesSection();
}
if (isPanelVisible("requests")) {
thingsPopup.renderRequestsSection();
}
timeCounter.updateTimeCounter();
setTimeout(updateEverySecond, 1000);
}
chrome.storage.local.get("flags", (data) => {
if (data.flags) {
setFlags(data.flags);
}
thingsPopup.render();
updateEverySecond();
});
interface ChromeMessage {
type?: string;
flags?: Flags;
message?: string;
details?: {
url: string;
type: string;
method: string;
initiator?: string;
timeStamp?: number;
};
}
chrome.runtime.onMessage.addListener((message: ChromeMessage) => {
if (message.type === "UPDATE_FLAGS" && message.flags) {
setFlags(message.flags);
thingsPopup.render();
}
if (message.message === "Request" && message.details) {
requestTracker.trackRequest(message.details);
if (isPanelVisible("requests")) {
thingsPopup.renderRequestsSection();
}
}
});