-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
55 lines (48 loc) · 1.74 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
// chrome.commands.onCommand.addListener((command) => {
// if (command === "open_prompt") {
// chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
// if (chrome.runtime.lastError) {
// console.error(chrome.runtime.lastError);
// return;
// }
// if (tabs.length === 0) {
// console.error("No active tab found");
// return;
// }
// const activeTab = tabs[0];
// console.log("Command open_prompt triggered for tab:", activeTab.id);
// chrome.tabs.sendMessage(activeTab.id, { action: "open_prompt" }, (response) => {
// if (chrome.runtime.lastError) {
// console.error("Error sending message:", chrome.runtime.lastError);
// } else {
// console.log("Message sent successfully, response:", response);
// }
// });
// });
// }
// });
chrome.commands.onCommand.addListener((command) => {
if (command === "open_prompt") {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
if (chrome.runtime.lastError) {
console.error(chrome.runtime.lastError);
return;
}
if (tabs.length === 0) {
console.error("No active tab found");
return;
}
const activeTab = tabs[0];
console.log("Command open_prompt triggered for tab:", activeTab.id);
chrome.tabs.sendMessage(activeTab.id, { action: "open_prompt" }, (response) => {
if (chrome.runtime.lastError) {
console.error("Error sending message:", chrome.runtime.lastError.message);
} else if (response) {
console.log("Message sent successfully, response:", response);
} else {
console.log("No response received");
}
});
});
}
});