forked from containers-everywhere/contain-google
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
61 lines (48 loc) · 1.25 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
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Microsoft Container Preferences</title>
</head>
<body>
<form>
<h1>Settings</h1>
<hr>
<p>
<label>
<input type="checkbox" id="ignore_github" value="1">
Ignore GitHub<br>
<em>(Means don't use Microsoft Container for GitHub sites.)</em>
</label>
</p>
<p>
<label>
<input type="checkbox" id="dont_override_containers" value="1">
Don't override other containers<br>
<em>(Means don't use Microsoft Container on tabs that are already in a container.)</em>
</label>
</p>
<p>
<label>
<textarea id="allowlist" value="" cols="80">
</textarea>
<br>
Include additional urls in Microsoft Container<br>
<em>(Means use Microsoft Container on these additional urls, e.g. for third party SSO or "Log in with Microsoft". Use one url per line.)</em>
</label>
</p>
<p>
<label>
<textarea id="whitelist" value="" cols="80">
</textarea>
<br>
Exclude Microsoft urls in Microsoft Container<br>
<em>(Means don't use Microsoft Container on these Microsoft urls. Use one url per line.)</em>
</label>
</p>
<button type="submit">Save settings</button>
<hr>
</form>
<script src="options.js"></script>
</body>
</html>