-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
31 lines (30 loc) · 1.05 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
<!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>Getting Started Extension's Popup</title>
<link rel="stylesheet" href="stylesheets/styles.css" />
<script src="js/vendor/jquery-3.2.1.min.js"></script>
<script src="js/vendor/faker.min.js"></script>
<!--
- 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
-->
</head>
<body>
<h4>Formbot Automatic Form Filler</h4>
<div id="formbot">
<button class="formbot__button js-fill">Fill</button>
<button class="formbot__button formbot__button--secondary js-clear">Clear</button>
<span class="formbot__result"></span>
</div>
<script src="js/formbot.js"></script>
<script src="js/popup.js"></script>
</body>
</html>