-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
55 lines (54 loc) · 1.45 KB
/
popup.html
File metadata and controls
55 lines (54 loc) · 1.45 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>NeuraBrowser Popup</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 10px;
}
button {
margin-top: 10px;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #007bff;
color: #ffffff;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
#languageMenu {
margin-top: 10px;
display: none;
}
select {
margin-top: 10px;
padding: 5px;
border-radius: 5px;
}
</style>
</head>
<body>
<h2>NeuraBrowser</h2>
<button id="summarizeButton">Summarize Page Content</button>
<button id="translateButton">Translate Page</button>
<button id="privacyToggleButton">Toggle Privacy Protection</button>
<div id="languageMenu">
<label for="languageSelect">Select Language:</label>
<select id="languageSelect">
<option value="es">Spanish</option>
<option value="fr">French</option>
<option value="de">German</option>
<option value="zh">Chinese</option>
<option value="ar">Arabic</option>
<option value="hi">Hindi</option>
<option value="Pashto">Pashto</option>
<option value="ur-pk">Urdu</option>
</select>
<button id="confirmLanguageButton">Translate</button>
</div>
<script src="popup.js"></script>
</body>
</html>