-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
37 lines (30 loc) · 828 Bytes
/
options.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
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head><title>WebPageTest API Key</title>
<style>
#note, #status {font-weight:bold;}
#status { color:green; font-size:150%; }
</style>
</head>
<body>
<div id="note">WebPageTest will work ONLY with your own API Key!</div>
<br />
<label>
Please input your WebPageTest API Key
<input type="text" id="wptk">
</label>
<br />
<button id="save" onclick="save_options()">Save</button>
<br />
<div id="status"></div>
<br />
<hr />
<br />
<div id="noapi">
<strong>Don't have a WebPageTest API Key yet?</strong> - Get it immediately under <a href="https://www.webpagetest.org/getkey.php" target="_blank">https://www.webpagetest.org/getkey.php</a>
<br /><br />
Your own WebPageTest API Key is <strong>free</strong> and allows to execute 200 tests a day!
</div>
<script src="options.js"></script>
</body>
</html>