feat: support tab-wide recording and release notes
CI / Test and build (push) Canceled after 0s

This commit is contained in:
go0p
2026-09-24 14:50:33 +08:00
parent 8c84e16012
commit d35912c7cf
22 changed files with 464 additions and 94 deletions
+2
View File
@@ -63,6 +63,7 @@ async function send<T>(action: string, payload?: unknown): Promise<T> {
export default defineContentScript({
matches: ['http://*/*', 'https://*/*'],
allFrames: true,
runAt: 'document_start',
async main(ctx) {
@@ -77,6 +78,7 @@ export default defineContentScript({
console.warn('[Yakit Browser Agent] MAIN-world bridge is unavailable; continuing without page Eval/Invoke.', error);
});
}
if (window.top !== window) return;
const host = document.createElement('yakit-browser-agent');
const shadow = host.attachShadow({ mode: 'open' });