Files
product-sourcing-capture/extension/background.js
T
mosen e9939ef9dc Initial release with production deploy config.
Add GitAtlas deploy assets, DATA_FILE support for isolated server data, and port documentation for sourcing.simosen.cn.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-15 00:52:31 +08:00

10 lines
287 B
JavaScript

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 });
}
});