-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
28 lines (24 loc) · 881 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div id="container">
<h1>Configuration</h1>
<p>Please enter a colour per AWS console URL using the following JSON as a guide. </p>
<p style="font-size: 0.8em"><strong>Hint: </strong>you can right click the extension button and choose "Options" for more space.</p>
<pre>{
"https://your-account-id.eu-west-1.console.aws.amazon.com/": "#ff5313",
"https://your-account-id.eu-west-1.console.aws.amazon.com/": "#ff9f13",
"https://your-account-id.eu-west-1.console.aws.amazon.com/": "#6cb60b"
}</pre>
<form>
<textarea id="config"></textarea>
<p id="config-output"></p>
<p><button id="save">Update Settings</button></p>
</form>
</div>
<script src="options.js"></script>
</body>
</html>