forked from Sulagna-Dutta-Roy/GGExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
41 lines (38 loc) · 1.08 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Contextual Content Enhancer</title>
<link rel="stylesheet" type="text/css" href="src/style.css">
</head>
<body>
<div class="container">
<h1>Settings</h1>
<label>
<input type="checkbox" id="textToSpeech">
Text-to-Speech
</label>
<label>
<input type="checkbox" id="translation">
Translation
</label>
<label>
<input type="checkbox" id="summarization">
Summarization
</label>
<label>
<input type="checkbox" id="keywordHighlighting">
Keyword Highlighting
</label>
<label>
Language:
<input type="text" id="language" placeholder="Enter language code (e.g., en)">
</label>
<label>
Keywords:
<textarea id="keywords" placeholder="Enter keywords, separated by commas"></textarea>
</label>
<button id="saveSettings">Save Settings</button>
</div>
<script src="scripts/popup.js"></script>
</body>
</html>