-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathoptions.html
38 lines (37 loc) · 1.27 KB
/
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
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Deep Auto Fill Chrome - Settings</title>
<script src="./jquery-3.1.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./ace-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css" media="screen">
body, html{
background-color: #272822;
color: #F8F8F2;
}
h3{
color: #A6E22E;
}
a{
color:#F92672;
}
#editor {
position: absolute;
top: 100px;
right: 0;
bottom: 0;
left: 0;
}
</style>
</head>
<body id="options-page">
<h3>Deep Auto Fill Chrome - Settings</h3>
Press ctrl+s to save settings. Do not be scared. This page will close if your settings are saved successfully. To trigger a random wild monkey you can simply click the ✒️ icon in the upper right corner of your browser.
<br>
<a href="https://github.com/s-a/deep-autofill-chrome-extension" target="_blank">Help</a>
<a href="https://s-a.github.io/deep-autofill-chrome-extension/test.html" target="_blank">Testpage</a>
<a href="https://github.com/marak/Faker.js/#api-methods" target="_blank">faker.js API</a>
<div id="editor"></div>
<script src="./options.js" type="text/javascript"></script>
</body>