-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackground.js
47 lines (43 loc) · 1.54 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
chrome.runtime.onInstalled.addListener(function () {
console.log("Extension Installed");
});
chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) {
if (changeInfo.status === "complete") {
console.log("Page loaded completely");
chrome.tabs.sendMessage(
tabId,
{ action: "pageLoaded" },
function (response) {
console.log("Content script response:", response);
}
);
}
});
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.action === "randomlySelect") {
console.log("Randomly selecting...");
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, { action: "randomlySelect" });
});
}
if (request.action === "positive") {
console.log("positive selecting...");
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, { action: "positive" });
});
}
if (request.action === "negative") {
console.log("negative selecting...");
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, { action: "negative" });
});
}
if (request.action === "neutral") {
console.log("neutral selecting...");
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, { action: "neutral" });
});
}
// Ensure that the listener returns true for asynchronous responses
return true;
});