-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpopup.html
More file actions
28 lines (27 loc) · 810 Bytes
/
popup.html
File metadata and controls
28 lines (27 loc) · 810 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
<!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>Scroll Stop</title>
<script src="javascript/jquery-1.11.2.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<script src="javascript/popup.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body id="popupBody">
<div class="popupText" id="status"></div>
<a id="options" href="/settings.html">
<div id="options-cont">
<i class="material-icons" style="font-size:20px">
exit_to_app
</i>
<span class="popupText">Go to Settings</span>
</div>
</a>
</body>
</html>