-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.js
More file actions
69 lines (60 loc) · 1.43 KB
/
popup.js
File metadata and controls
69 lines (60 loc) · 1.43 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
const DEFAULT_SETTINGS = {
wipeHistory: true,
wipeCache: true,
wipeDownloads: true,
triggerStartup: true,
triggerLastWindowClose: true
};
const ids = [
"wipeHistory",
"wipeCache",
"wipeDownloads",
"triggerStartup",
"triggerLastWindowClose"
];
function $(id) {
return document.getElementById(id);
}
function setStatus(msg) {
$("status").textContent = msg;
if (msg) setTimeout(() => setStatus(""), 1400);
}
async function loadSettings() {
const settings = await chrome.storage.sync.get(DEFAULT_SETTINGS);
for (const id of ids) {
$(id).checked = Boolean(settings[id]);
}
}
async function saveSettings() {
const settings = {};
for (const id of ids) {
settings[id] = $(id).checked;
}
await chrome.storage.sync.set(settings);
setStatus("Saved.");
}
function wireListeners() {
for (const id of ids) {
$(id).addEventListener("change", saveSettings);
}
$("wipeNow").addEventListener("click", async () => {
$("wipeNow").disabled = true;
setStatus("Wiping...");
try {
const result = await chrome.runtime.sendMessage({ type: "WIPE_NOW" });
if (result && result.ok) {
setStatus("Wipe completed.");
} else {
setStatus("Wipe failed.");
}
} catch (e) {
setStatus("Wipe failed.");
} finally {
$("wipeNow").disabled = false;
}
});
}
document.addEventListener("DOMContentLoaded", async () => {
await loadSettings();
wireListeners();
});