-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-script.js
105 lines (93 loc) · 3.19 KB
/
content-script.js
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
async function shouldConfirmManyTabs() {
const storage = await browser.storage.local.get('suppressConfirm');
return !storage.suppressConfirm;
}
async function shouldMarkRead() {
const storage = await browser.storage.local.get('markRead');
return storage.markRead;
}
async function shouldOpenSaved() {
const storage = await browser.storage.local.get('openSaved');
return storage.openSaved;
}
async function open() {
let unread;
let saved;
if (await shouldOpenSaved()) {
saved = document.getElementsByClassName('EntryMetadataReadLater');
console.log(saved)
} else {
unread = document.getElementsByClassName('entry u4');
}
if (await shouldOpenSaved()) {
if (saved.length >= 5 && await shouldConfirmManyTabs() && !confirm(`Are you sure you want to open ${saved.length} tabs`)) {
return;
}
for (const x of saved) {
// noinspection ES6MissingAwait
browser.runtime.sendMessage({
href: x.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.querySelector('a[class*="EntryTitleLink"]').href,
});
}
} else {
if (unread.length >= 5 && await shouldConfirmManyTabs() && !confirm(`Are you sure you want to open ${unread.length} tabs`)) {
return;
}
for (var i = 0; i < unread.length; i++) {
// Only if there is only single class
if (unread[i].className == 'entry u4') {
// Do something with the element e[i]
browser.runtime.sendMessage({
href: unread[i].querySelector('a[class*="EntryTitleLink"]').href,
});
}
}
}
if (await shouldMarkRead()) {
document.getElementsByClassName('MarkAsReadButton')[0].click();
await new Promise((resolve) => requestAnimationFrame(resolve));
document.querySelector('li.MenuItem:nth-child(2)').click();
}
}
async function addButton(parent) {
const button = document.createElement('button');
button.style.borderRadius = '4px';
button.style.paddingLeft = '11px';
button.style.paddingRight = '11px';
button.style.paddingBottom = '10px';
button.style.paddingTop = '10px';
button.style.fontWeight = '700';
button.style.fontSize = '12px';
button.style.color = '#FFFFFF';
button.style.fontFamily = 'inherit';
button.style.cursor = 'pointer';
button.style.textAlign = 'center';
button.style.minWidth = '50px';
button.style.background = '#2bb24c';
button.style.alignItems = 'center';
button.style.display = 'inline-flex';
button.style.textAlign = 'center';
button.style.lineHeight = '1rem';
button.style.marginRight = '10px';
button.style.borderColor = '#2bb24c';
button.style.borderStyle = 'solid';
button.style.position = 'relative'
button.classList.add('secondary', 'open-unread');
if (await shouldOpenSaved()) {
button.innerHTML = 'Open Saved';
} else {
button.innerHTML = 'Open Unread';
}
button.onclick = open;
parent.insertBefore(button, parent.firstChild);
}
const observer = new MutationObserver(() => {
const parent = document.getElementsByClassName('okOnNFlwXtGnQCE5o7BA');
if (parent.length && !parent[0].querySelector('.open-unread')) {
addButton(parent[0]);
}
});
observer.observe(document.querySelector('body'), {
childList: true,
subtree: true,
});