-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbackground.js
70 lines (63 loc) · 1.97 KB
/
background.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
// Define default settings
const DEFAULT_SETTINGS = {
enabled: true,
enableHighlighting: false,
highlightColor: "yellow",
websites: [],
blacklist: [],
};
// Load settings from storage
function loadSettings() {
return chrome.storage.local.get(DEFAULT_SETTINGS);
}
// Save settings to storage
function saveSettings(settings) {
return chrome.storage.local.set(settings);
}
// When the extension is installed or updated, set default settings
chrome.runtime.onInstalled.addListener((details) => {
if (details.reason === "install") {
saveSettings(DEFAULT_SETTINGS);
}
});
chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) {
if (changeInfo.status == "complete" && tab.active) {
loadSettings().then((settings) => {
if (!tab.url) {
return;
}
const url = new URL(tab.url);
const includesWebsite = settings.websites.includes(url.href);
const hostname = url.hostname;
const pageBlacklist = settings.blacklist.includes(hostname);
const enabled = settings.enabled;
if (enabled && includesWebsite && !pageBlacklist) {
chrome.action.setIcon({ path: "/active.png" });
} else {
chrome.action.setIcon({ path: "/inactive.png" });
}
});
}
});
chrome.tabs.onActivated.addListener(function (activeInfo) {
chrome.tabs.get(activeInfo.tabId, function (tab) {
if (tab.active) {
loadSettings().then((settings) => {
//Ensure the url is valid
if (!tab.url) {
return;
}
const url = new URL(tab.url);
const includesWebsite = settings.websites.includes(url.href);
const hostname = url.hostname;
const pageBlacklist = settings.blacklist.includes(hostname);
const enabled = settings.enabled;
if (enabled && includesWebsite && !pageBlacklist) {
chrome.action.setIcon({ path: "/active.png" });
} else {
chrome.action.setIcon({ path: "/inactive.png" });
}
});
}
});
});