aboutsummaryrefslogtreecommitdiff
path: root/src/popup/popup.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/popup/popup.html')
-rw-r--r--src/popup/popup.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/popup/popup.html b/src/popup/popup.html
new file mode 100644
index 0000000..808bc9e
--- /dev/null
+++ b/src/popup/popup.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>AI Prompt</title>
+ <style>
+ body {
+ font-family: sans-serif;
+ padding: 10px;
+ }
+ textarea {
+ width: 100%;
+ height: 120px;
+ }
+ button {
+ margin-top: 8px;
+ padding: 6px 12px;
+ }
+ pre {
+ background: #f5f5f5;
+ padding: 6px;
+ max-height: 200px;
+ overflow: auto;
+ }
+ </style>
+ </head>
+ <body>
+ <h3>Enter Prompt</h3>
+ <textarea id="prompt"></textarea>
+ <br />
+ <button id="send">Show Compose Context</button>
+ <pre id="output">No data yet</pre>
+
+ <script src="../browser-polyfill.js"></script>
+ <script src="popup.js"></script>
+ </body>
+</html>