Initial build: Agentjacking Shield Chrome extension MVP

This commit is contained in:
Bun Bun
2026-06-19 00:27:14 +00:00
commit 225ca3caca
20 changed files with 3361 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import { crx } from '@crxjs/vite-plugin'
import manifest from './manifest.json' assert { type: 'json' }
export default defineConfig({
plugins: [crx({ manifest })],
build: {
outDir: 'dist',
emptyOutDir: true,
rollupOptions: {
input: {
popup: 'src/popup/popup.html'
}
}
}
})