-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.js
203 lines (180 loc) · 6.6 KB
/
popup.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
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
const DEFAULT_SETTINGS = {
enabled: true,
enableHighlighting: false,
highlightColor: "yellow",
websites: [],
blacklist: [],
};
let mySettings = DEFAULT_SETTINGS;
window.onload = function () {
loadSettings();
const form = document.querySelector("#settings-form");
const sitesControl = document.getElementById("site-switch");
const pageControl = document.getElementById("page-switch");
const enabledControl = document.getElementById("enabled");
const submitButton = document.getElementById("submitButton");
function toggleSubmitActive() {
submitButton.classList.remove("disabled");
}
const enableHighlightingCheckbox = document.getElementById(
"enable-highlighting"
);
const highlightColorSelect = document.getElementById("highlight-color");
//When the site switched is changed, if it's true, add the current site to the list of websites, if it's false, remove it
sitesControl.addEventListener("change", (event) => {
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
// Extract the hostname from the URL of the tab
var url = tabs[0].url;
var hostname = new URL(url).hostname;
if (event.target.checked) {
if (!mySettings.websites.includes(hostname)) {
mySettings.websites.push(hostname);
}
//remove it from the blacklist if it's there
mySettings.blacklist = mySettings.blacklist.filter(
(site) => site !== hostname
);
if (mySettings.websites.includes(url)) {
pageControl.checked = true;
}
} else {
mySettings.websites = mySettings.websites.filter(
(site) => site !== hostname
);
//add it to the blacklist if it's not there
if (!mySettings.blacklist.includes(hostname)) {
mySettings.blacklist.push(hostname);
}
pageControl.checked = false;
}
toggleSubmitActive();
saveSettings(mySettings);
});
});
//When the page switched is changed, if it's true, enable the extension for the current page, if it's false, disable it
pageControl.addEventListener("change", (event) => {
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
// Extract the hostname from the URL of the tab
var url = tabs[0].url;
if (event.target.checked) {
if (!mySettings.websites.includes(url)) {
mySettings.websites.push(url);
}
//remove it from the blacklist if it's there
mySettings.blacklist = mySettings.blacklist.filter(
(site) => site !== url
);
} else {
mySettings.websites = mySettings.websites.filter(
(site) => site !== url
);
//add it to the blacklist if it's not there
if (!mySettings.blacklist.includes(url)) {
mySettings.blacklist.push(url);
}
}
toggleSubmitActive();
saveSettings(mySettings);
});
});
//When the enabled checkbox is changed, if it's true, enable the extension, if it's false, disable it
enabledControl.addEventListener("change", (event) => {
if (event.target.checked) {
mySettings.enabled = true;
} else {
mySettings.enabled = false;
}
toggleSubmitActive();
saveSettings(mySettings);
});
//When the enable highlighting checkbox is changed, if it's true, enable highlighting, if it's false, disable it
enableHighlightingCheckbox.addEventListener("change", (event) => {
if (event.target.checked) {
mySettings.enableHighlighting = true;
if (
enabledControl.checked &&
sitesControl.checked &&
pageControl.checked
) {
submitButton.classList.remove("disabled");
}
} else {
mySettings.enableHighlighting = false;
}
saveSettings(mySettings);
});
highlightColorSelect.addEventListener("change", (event) => {
mySettings.highlightColor = event.target.value;
toggleSubmitActive();
saveSettings(mySettings);
});
//When the settings form is submitted, save the settings
form.addEventListener("submit", (event) => {
event.preventDefault();
//Refresh the page
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.reload(tabs[0].id);
});
});
};
//Handle the loading of settings from storage
function loadSettings() {
return chrome.storage.local.get(DEFAULT_SETTINGS, function (settings) {
//Set the checkbox to the correct value
document.getElementById("enabled").checked = settings.enabled;
document.getElementById("enable-highlighting").checked =
settings.enableHighlighting;
document.getElementById("highlight-color").value = settings.highlightColor;
mySettings = settings;
submitButton.classList.add("disabled");
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
// Extract the hostname from the URL of the tab
var url = tabs[0].url;
var hostname = new URL(url).hostname;
let isSiteEnabled = mySettings.websites.includes(hostname);
let isPageEnabled =
mySettings.websites.includes(url) &&
!mySettings.blacklist.includes(hostname);
//If the site doesn't exist in mySettings.websites and it doesn't exist in the blacklist, add it to the websites
if (
!isSiteEnabled &&
!mySettings.blacklist.includes(hostname) &&
!mySettings.websites.includes(hostname)
) {
if (!mySettings.websites.includes(hostname)) {
mySettings.websites.push(hostname);
}
isSiteEnabled = true;
saveSettings(mySettings);
}
//Do the same with the page
if (
!isPageEnabled &&
!mySettings.blacklist.includes(url) &&
!mySettings.websites.includes(url)
) {
if (!mySettings.websites.includes(url)) {
mySettings.websites.push(url);
}
isPageEnabled = true;
saveSettings(mySettings);
}
document.getElementById("site-switch").checked = isSiteEnabled;
document.getElementById("site-label").innerText = hostname;
//Set the checkbox to the correct value
document.getElementById("page-switch").checked = isPageEnabled;
//Everything from the end of the host name to the end of the url
document.getElementById("page-label").innerText = url
.substring(url.indexOf(hostname) + hostname.length)
.substring(0, 25)
.concat("...");
});
//Get whether the base url of this site is in the list of websites
});
}
//Handle the saving of settings
function saveSettings(settings) {
chrome.storage.local.set(settings, function () {
console.log("Settings saved");
});
}