Files
LexAI/packages/chrome/entrypoints/popup/index.html
john kevin asprec d63d698b57 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.
2026-08-13 19:16:54 +08:00

14 lines
326 B
HTML

<!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>