-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
54 lines (52 loc) · 1.36 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AIartifact Options</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f0f0f0;
}
h1 {
color: #333;
text-align: center;
}
.option {
background-color: white;
border-radius: 8px;
padding: 15px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.option input[type="checkbox"] {
margin-right: 10px;
}
</style>
</head>
<body>
<h1>AIartifact Options</h1>
<div class="option">
<input type="checkbox" id="aiInputToggle">
<label for="aiInputToggle">Enable AI Input</label>
</div>
<div class="option">
<input type="checkbox" id="aiArtifactToggle">
<label for="aiArtifactToggle">Enable AI Artifact</label>
</div>
<div class="option">
<input type="checkbox" id="aiArtifactbetaToggle">
<label for="aiArtifactbetaToggle">Enable AI Artifact Beta</label>
</div>
<div class="option">
<input type="checkbox" id="modifyCspToggle">
<label for="modifyCspToggle">Remove CSP to allow AIartifact to work, this may break some sites like claude.ai</label>
</div>
<script src="options.js"></script>
</body>
</html>