-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathoptions.html
93 lines (76 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Google Container Preferences</title>
</head>
<body>
<form>
<h1>Settings</h1>
<hr>
<p>
<label>
<input type="checkbox" id="ignore_youtube" value="1">
Ignore YouTube<br>
<em>(Means don't use Google Container for YouTube sites.)</em>
</label>
</p>
<p>
<label>
<input type="checkbox" id="ignore_searchpages" value="1">
Ignore search pages<br>
<em>(Means don't use Google Container on Google sites with a path of <code>/search</code>.)</em>
</label>
</p>
<p>
<label>
<input type="checkbox" id="ignore_prefpages" value="1">
Ignore preference pages<br>
<em>(Means don't use Google Container on Google sites with a path of <code>/preferences</code> and <code>/setprefs</code>. Useful when ignoring search pages to still be able to change search language.)</em>
</label>
</p>
<p>
<label>
<input type="checkbox" id="ignore_maps" value="1">
Ignore maps pages<br>
<em>(Means don't use Google Container on Google sites with a path of <code>/maps</code>.)</em>
</label>
</p>
<p>
<label>
<input type="checkbox" id="ignore_flights" value="1">
Ignore flights pages<br>
<em>(Means don't use Google Container on Google sites with a path of <code>/flights</code>.)</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 Google 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 Google Container<br>
<em>(Means use Google Container on these additional urls, e.g. for third party SSO or "Log in with Google". Use one url per line.)</em>
</label>
</p>
<p>
<label>
<textarea id="whitelist" value="" cols="80">
</textarea>
<br>
Exclude Google urls in Google Container<br>
<em>(Means don't use Google Container on these Google urls. Use one url per line.)</em>
</label>
</p>
<button type="submit">Save settings</button>
<hr>
</form>
<script src="options.js"></script>
</body>
</html>