-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
executable file
·43 lines (39 loc) · 1.35 KB
/
popup.html
File metadata and controls
executable file
·43 lines (39 loc) · 1.35 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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Senti</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<link rel="stylesheet" type="text/css" href="./bootstrap/css/bootstrap-theme.min.css" />
<link rel="stylesheet" type="text/css" href="./bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="popup.css" />
<script src="jquery.js"></script>
<script src="clarifai.js"></script>
</head>
<body>
<div class="container">
<div class="top-content">
<div class="header-1"><b>SENTI</b></div>
<hr>
</div>
<div class="bot-content">
<button type="button" class="btn btn-info" id="options-button">Get Started!</button>
<br />
<button type="button" class="btn btn-info" id="analytics-button">Analyze Data</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>