feat: improve clip UX, markdown export, and obsidian flow

This commit is contained in:
2026-03-01 22:28:23 +09:00
parent 3e1bd55438
commit 58c7906cb8
53 changed files with 2603 additions and 95 deletions

View File

@@ -0,0 +1,13 @@
(function () {
'use strict';
const injectTime = performance.now();
(async () => {
const { onExecute } = await import(
/* @vite-ignore */
chrome.runtime.getURL("assets/index.ts-DMIsnBNX.js")
);
onExecute?.({ perf: { injectTime, loadTime: performance.now() - injectTime } });
})().catch(console.error);
})();