-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
30 lines (28 loc) · 1013 Bytes
/
popup.html
File metadata and controls
30 lines (28 loc) · 1013 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Extension</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap">
</head>
<body>
<div class="container">
<img src="main.png" alt="Logo" class="logo">
<div id="content">
<div class="description"> Subsleuth is an AI-driven tool that scrutinizes URLs and webpage content, employing advanced algorithms and natural language processing techniques to identify and flag potentially harmful online elements.
</div>
<button class="button" id="analyseButton">Analyse Page</button>
<br>
<div id="result"></div>
</div>
<div id="warningPage">
<!-- Warning page content -->
</div>
<div id="buttonContainer"></div>
</div>
<script src="popup.js">
</script>
</body>
</html>