-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.js
More file actions
487 lines (487 loc) · 16.4 KB
/
Copy pathpopup.js
File metadata and controls
487 lines (487 loc) · 16.4 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
'use strict';
document.addEventListener(
'DOMContentLoaded',
async () => {
const interceptCount =
document.getElementById(
'interceptCount'
);
const mainSwitch =
document.getElementById(
'mainSwitch'
);
const fingerprintSwitch =
document.getElementById(
'fingerprintSwitch'
);
const webrtcSwitch =
document.getElementById(
'webrtcSwitch'
);
const autoCleanSwitch =
document.getElementById(
'autoCleanSwitch'
);
const clearDataBtn =
document.getElementById(
'clearDataBtn'
);
const reloadBtn =
document.getElementById(
'reloadBtn'
);
const engineBadge =
document.getElementById(
'engineBadge'
);
const engineBadgeText =
document.getElementById(
'engineBadgeText'
);
const allowlistToggleBtn =
document.getElementById(
'allowlistToggleBtn'
);
const currentHostEl =
document.getElementById(
'currentHost'
);
const allowlistList =
document.getElementById(
'allowlistList'
);
const allowlistItems =
document.getElementById(
'allowlistItems'
);
const featureEls = [
mainSwitch?.closest('.feature'),
fingerprintSwitch?.closest('.feature'),
webrtcSwitch?.closest('.feature'),
autoCleanSwitch?.closest('.feature')
].filter(Boolean);
async function getActiveTab() {
const tabs =
await chrome.tabs.query({
active: true,
currentWindow: true
});
return tabs[0];
}
async function refreshCurrentSiteCount() {
try {
const tab =
await getActiveTab();
if (!tab?.url) {
interceptCount.textContent =
'0';
return;
}
const response =
await chrome.runtime.sendMessage(
{
action:
'getSiteBlockCount',
siteUrl: tab.url
}
);
const count =
response?.status === 'ok'
? response.count || 0
: 0;
interceptCount.textContent =
String(count);
} catch (e) {
interceptCount.textContent = '0';
}
}
function syncEngineBadge(enabled) {
if (!engineBadge) {
return;
}
if (engineBadgeText) {
engineBadgeText.textContent =
enabled
? 'ACTIVE'
: 'OFF';
}
engineBadge.style.color = enabled
? 'var(--success)'
: 'var(--warning)';
engineBadge.style.background = enabled
? 'rgba(34,197,94,0.12)'
: 'rgba(245,158,11,0.12)';
engineBadge.style.borderColor = enabled
? 'rgba(34,197,94,0.3)'
: 'rgba(245,158,11,0.35)';
}
function getHostnameFromUrl(url) {
try {
return new URL(url).hostname.toLowerCase();
} catch (e) {
return '';
}
}
async function loadAllowlist() {
try {
const data = await chrome.storage.local.get('allowlist');
return data.allowlist || [];
} catch (e) {
return [];
}
}
async function saveAllowlist(list) {
await chrome.storage.local.set({ allowlist: list });
}
function renderAllowlistItems(list) {
allowlistItems.innerHTML = '';
if (!list || !list.length) {
allowlistList.style.display = 'none';
return;
}
allowlistList.style.display = 'block';
list.forEach((entry, idx) => {
const item = document.createElement('div');
item.className = 'allowlist-item';
const name = document.createElement('span');
name.textContent = entry;
const removeBtn = document.createElement('button');
removeBtn.className = 'allowlist-item-remove';
removeBtn.textContent = '✕';
removeBtn.title = '移除 ' + entry;
removeBtn.addEventListener('click', async () => {
const updated = await loadAllowlist();
const filtered = updated.filter((_, i) => i !== idx);
await saveAllowlist(filtered);
renderAllowlistItems(filtered);
updateAllowlistUI(filtered);
});
item.appendChild(name);
item.appendChild(removeBtn);
allowlistItems.appendChild(item);
});
}
async function updateAllowlistUI(list) {
const tab = await getActiveTab();
const hostname = getHostnameFromUrl(tab?.url || '');
currentHostEl.textContent = hostname || '—';
const isInList = list.some(entry =>
hostname && hostname.endsWith(entry.toLowerCase())
);
if (isInList) {
allowlistToggleBtn.textContent = '🔒 移出白名单';
allowlistToggleBtn.className = 'btn btn-allowlist remove';
featureEls.forEach(el => el.classList.add('disabled'));
mainSwitch.checked = false;
syncEngineBadge(false);
} else {
allowlistToggleBtn.textContent = '🔓 加入白名单';
allowlistToggleBtn.className = 'btn btn-allowlist add';
featureEls.forEach(el => el.classList.remove('disabled'));
}
allowlistToggleBtn.disabled = !hostname;
}
async function initialize() {
try {
const data =
await chrome.storage.local.get([
'isEnabled',
'fingerprintEnabled',
'webrtcEnabled',
'autoCleanPrevDomain',
'allowlist'
]);
await refreshCurrentSiteCount();
const list = data.allowlist || [];
await updateAllowlistUI(list);
renderAllowlistItems(list);
mainSwitch.checked =
data.isEnabled !== false;
syncEngineBadge(
data.isEnabled !== false
);
fingerprintSwitch.checked =
data.fingerprintEnabled !== false;
webrtcSwitch.checked =
data.webrtcEnabled !== false;
autoCleanSwitch.checked =
data.autoCleanPrevDomain !==
false;
} catch (e) {
console.error(
'[NextAnti]',
e
);
}
}
await initialize();
mainSwitch.addEventListener(
'change',
async () => {
const enabled =
mainSwitch.checked;
await chrome.storage.local.set({
isEnabled: enabled
});
syncEngineBadge(enabled);
console.log(
'[NextAnti] Main switch:',
enabled
);
notify(
enabled
? 'NextAnti 已启用'
: 'NextAnti 已关闭'
);
}
);
fingerprintSwitch.addEventListener(
'change',
async () => {
const enabled =
fingerprintSwitch.checked;
await chrome.storage.local.set({
fingerprintEnabled:
enabled
});
console.log(
'[NextAnti] Fingerprint:',
enabled
);
notify(
enabled
? '指纹混淆已启用'
: '指纹混淆已关闭'
);
}
);
// ====================================
// WebRTC 开关
// ====================================
webrtcSwitch.addEventListener(
'change',
async () => {
const enabled =
webrtcSwitch.checked;
await chrome.storage.local.set({
webrtcEnabled:
enabled
});
console.log(
'[NextAnti] WebRTC:',
enabled
);
notify(
enabled
? 'WebRTC 防泄漏已启用'
: 'WebRTC 防泄漏已关闭'
);
}
);
autoCleanSwitch.addEventListener(
'change',
async () => {
const enabled =
autoCleanSwitch.checked;
await chrome.storage.local.set({
autoCleanPrevDomain:
enabled
});
console.log(
'[NextAnti] Auto clean previous domain:',
enabled
);
notify(
enabled
? '切换主域自动清理已启用'
: '切换主域自动清理已关闭'
);
}
);
// ====================================
// 清除站点数据
// ====================================
clearDataBtn.addEventListener(
'click',
async () => {
const confirmed =
confirm(
'确定清除当前网站所有缓存、Cookie 与本地存储数据?'
);
if (!confirmed) {
return;
}
try {
const tabs =
await chrome.tabs.query({
active: true,
currentWindow: true
});
const tab = tabs[0];
if (!tab?.url) {
notify(
'无法获取当前页面'
);
return;
}
chrome.runtime.sendMessage(
{
action:
'clearSiteData',
tabUrl: tab.url
},
(response) => {
if (
response &&
response.status ===
'success'
) {
notify(
'站点数据清除成功'
);
interceptCount.textContent =
'0';
window.close();
} else {
notify(
'清除失败'
);
}
}
);
} catch (e) {
console.error(e);
notify(
'清除失败'
);
}
}
);
// ====================================
// 重新加载页面
// ====================================
reloadBtn.addEventListener(
'click',
async () => {
try {
const tabs =
await chrome.tabs.query({
active: true,
currentWindow: true
});
const tab = tabs[0];
if (tab?.id) {
await chrome.tabs.reload(
tab.id
);
notify(
'页面已重新加载'
);
}
} catch (e) {
console.error(e);
notify(
'刷新失败'
);
}
}
);
// ====================================
// 白名单切换
// ====================================
allowlistToggleBtn.addEventListener(
'click',
async () => {
const tab = await getActiveTab();
const hostname = getHostnameFromUrl(tab?.url || '');
if (!hostname) return;
const list = await loadAllowlist();
const idx = list.findIndex(entry =>
hostname.endsWith(entry.toLowerCase())
);
if (idx >= 0) {
list.splice(idx, 1);
} else {
list.push(hostname);
}
await saveAllowlist(list);
renderAllowlistItems(list);
await updateAllowlistUI(list);
notify(list.includes(hostname)
? `已加入白名单: ${hostname}`
: `已移出白名单: ${hostname}`
);
}
);
// ====================================
// storage 实时同步
// ====================================
chrome.storage.onChanged.addListener(
(
changes,
areaName
) => {
if (
areaName !== 'local'
) {
return;
}
if (
changes.isEnabled
) {
mainSwitch.checked =
changes.isEnabled
.newValue;
syncEngineBadge(
changes.isEnabled.newValue
);
}
if (
changes.fingerprintEnabled
) {
fingerprintSwitch.checked =
changes
.fingerprintEnabled
.newValue;
}
if (
changes.webrtcEnabled
) {
webrtcSwitch.checked =
changes
.webrtcEnabled
.newValue;
}
if (
changes.autoCleanPrevDomain
) {
autoCleanSwitch.checked =
changes
.autoCleanPrevDomain
.newValue;
}
if (
changes.siteBlockStats
) {
refreshCurrentSiteCount();
}
if (
changes.allowlist
) {
const list = changes.allowlist.newValue || [];
updateAllowlistUI(list);
renderAllowlistItems(list);
}
}
);
// ====================================
// 通知
// ====================================
function notify(message) {
console.log(
'[NextAnti]',
message
);
}
}
);