chrome.runtime.onInstalled.addListener(() => { console.info("直播饰品选品采集器已安装"); }); chrome.runtime.onMessage.addListener((message, sender, sendResponse) => { if (message?.type === "PING") { sendResponse({ ok: true, tabId: sender.tab?.id || null }); } });