-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
43 lines (39 loc) · 1.12 KB
/
popup.html
File metadata and controls
43 lines (39 loc) · 1.12 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
<!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>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
height: 480px;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
max-width: 500px;
}
</style>
<!--
- 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
-->
<script src="jquery.js"></script>
<script src="popup.js"></script>
</head>
<body style="height:100%">
<p>Force Focus</p>
<form autocomplete="off" id="form1">
Enter website: <input type="text" name="fname" id="formInput">
<input type="button" id="submitButton" text="submit"></input>
</form>
<ul id="formOut"></ul>
</body>
</html>