feat: add popup and options pages for LexAI extension

- Created index.html for options page with basic structure.
- Implemented Popup component in Popup.tsx with state management for user input and actions.
- Added index.html for popup page with necessary scripts.
- Included various icon assets for the extension.
- Designed SVG icon for the extension with gradient background and lightning bolt.
- Added multiple screenshots for Chrome Web Store listing.
- Configured WXT for building the Chrome extension with manifest settings.
This commit is contained in:
john kevin asprec
2026-08-13 19:16:54 +08:00
parent 8bc529ef2d
commit d63d698b57
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LexAI</title>
<style>body { margin: 0; min-width: 420px; }</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="./Popup.tsx"></script>
</body>
</html>