temp / Firefox-extension /popup.html
NEXAS's picture
Upload 14 files
1a25ebd verified
raw
history blame contribute delete
No virus
537 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Extension</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<h1>Welcome to Llama Helper</h1>
<div id="conversation"></div>
<textarea id="input" rows="4" placeholder="Ask me anything..."></textarea>
<button id="submit">Submit</button>
</div>
<script src="popup.js"></script>
</body>
</html>