-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
72 lines (69 loc) · 1.5 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 300px;
padding: 12px;
margin: 0;
font-family: Arial, sans-serif;
background-color: #161618;
color: #d4d4d4;
}
h3 {
margin-top: 0;
margin-bottom: 8px;
}
p {
margin: 8px 0;
}
ol {
margin: 8px 0;
padding-left: 20px;
}
li {
margin-bottom: 4px;
}
.warning {
color: #a42903;
background-color: #ffccba;
padding: 8px;
border-radius: 4px;
margin: 8px 0;
font-size: 0.9em;
}
code {
background-color: #404045c1;
padding: 2px 4px;
border: 1px solid #404045;
border-radius: 4px;
font-size: 0.9em;
}
#setup-link {
display: block;
margin-top: 8px;
color: #4a9eff;
text-decoration: none;
font-size: 0.9em;
}
#setup-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h3>Quick Setup</h3>
<ol>
<li>Go to <code>about:config</code></li>
<li>Find <code>browser.tabs.allow_transparent_browser</code></li>
<li>Set to <strong>true</strong></li>
</ol>
<div class="warning">
<strong>Note:</strong> Set back to <strong>false</strong> if you remove
the extension.
</div>
<a href="./setup.html" id="setup-link" target="_blank"
>Open detailed setup guide</a
>
</body>
</html>