-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcontent.js
More file actions
62 lines (51 loc) · 1.46 KB
/
Copy pathcontent.js
File metadata and controls
62 lines (51 loc) · 1.46 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
const imgurRegex = /^https?:\/\/(\w+\.)?imgur\.com\/.*/;
let pageCount = 0;
const processedElements = new Set();
function checkRedirect() {
const url = new URL(window.location.href);
if (url.hostname === 'external-content.duckduckgo.com') {
const originalUrl = url.searchParams.get('u');
if (originalUrl && imgurRegex.test(originalUrl)) {
pageCount++;
chrome.runtime.sendMessage({
type: 'updateBadge',
count: pageCount
});
chrome.runtime.sendMessage({
type: 'incrementTotal',
amount: 1
});
}
}
}
function processImages() {
const images = document.querySelectorAll('img');
let newCount = 0;
images.forEach(img => {
if (processedElements.has(img)) return;
if (imgurRegex.test(img.src)) {
processedElements.add(img);
newCount++;
}
});
if (newCount > 0) {
pageCount += newCount;
chrome.runtime.sendMessage({
type: 'updateBadge',
count: pageCount
});
chrome.runtime.sendMessage({
type: 'incrementTotal',
amount: newCount
});
}
}
checkRedirect();
processImages();
const observer = new MutationObserver(processImages);
observer.observe(document.body, {
childList: true,
subtree: true,
attributes: true,
attributeFilter: ['src']
});