Files
page-agent/packages/extension/src/entrypoints/content.ts
T

14 lines
307 B
TypeScript
Raw Normal View History

import { initPageController } from '@/agent/RemotePageController.content'
2026-01-24 19:29:27 +08:00
const DEBUG_PREFIX = '[Content]'
export default defineContentScript({
matches: ['<all_urls>'],
runAt: 'document_idle',
main() {
console.debug(`${DEBUG_PREFIX} Loaded on ${window.location.href}`)
initPageController()
},
})