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>
This commit is contained in:
2026-06-15 00:52:31 +08:00
commit e9939ef9dc
45 changed files with 14376 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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 });
}
});