fnaf-extension/background.js
2024-08-11 15:03:22 +08:00

10 lines
No EOL
410 B
JavaScript

chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.action === 'checkFocus') {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
const focusedTabId = tabs[0].id;
sendResponse({ isFocused: sender.tab.id === focusedTabId });
});
// Keep the message channel open until sendResponse is called
return true;
}
});