Initial commit: OpenScript browser extension

This commit is contained in:
2026-09-08 13:52:35 -07:00
commit 2e986bf09d
20 changed files with 5909 additions and 0 deletions

11
vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import webExtension from "vite-plugin-web-extension";
export default defineConfig({
plugins: [
webExtension({
manifest: "manifest.json",
browser: "chrome",
}),
],
});