Files
promote/extension/background.js
2025-03-07 18:04:27 +08:00

7 lines
256 B
JavaScript

// Open the side panel when the extension icon is clicked
chrome.action.onClicked.addListener((tab) => {
chrome.sidePanel.open({ tabId: tab.id });
});
// Set the side panel as open by default for all pages
chrome.sidePanel.setOptions({ enabled: true });