-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
36 lines (28 loc) · 1.03 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
let refreshIntervals = {};
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.action === "start") {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
const tabId = tabs[0].id; // Get the currently active tab's ID.
const interval = message.interval * 1000;
if (refreshIntervals[tabId]) {
clearInterval(refreshIntervals[tabId]);
}
refreshIntervals[tabId] = setInterval(() => {
chrome.tabs.reload(tabId);
}, interval);
sendResponse({ status: "started" });
});
// Indicate that the response will be sent asynchronously
return true;
} else if (message.action === "stop") {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
const tabId = tabs[0].id;
if (refreshIntervals[tabId]) {
clearInterval(refreshIntervals[tabId]);
delete refreshIntervals[tabId];
}
sendResponse({ status: "stopped" });
});
return true;
}
});