-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.html
112 lines (111 loc) · 3.16 KB
/
extension.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title id="t">How to install extension</title>
<link href="https://fonts.googleapis.com/css2?family=Material+Icons" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap" rel="stylesheet">
<link rel='icon' href='https://lb123658.github.io/cebolla/favicon.png' type='image/png'/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: #282828;
}
#logo {
position: absolute;
width: 200px;
top: 100px;
left: 50%;
margin-left: -100px;
animation-name: animate;
animation-duration: 1.2s;
animation-iteration-count: 1;
}
@keyframes animate {
0% {transform: translate(0px, 80px); opacity: 0.0;}
100% {transform: translate(0px, 0px); opacity: 1;}
}
#title {
color: #f3e3c2;
font-family: 'New Tegomin', serif;
font-size: 30px;
user-select: none;
position: absolute;
top: 260px;
left: 0%;
width: 100%;
text-align: center;
animation-name: animate;
animation-duration: 1.2s;
animation-iteration-count: 1;
}
#s {
background: transparent;
border: 2px solid #282828;
border-radius: 20px;
color: #f3e3c2;
position: absolute;
top: 15px;
left: 10px;
font-size: 20px;
font-family: 'New Tegomin', serif;
height: 40px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 7px;
}
#s:hover {
cursor: pointer;
background: #595858;
}
#s:focus {
border: 2px solid #f3e3c2;
}
#chrome {
background: transparent;
border: 2px solid #282828;
border-radius: 20px;
color: #f3e3c2;
position: absolute;
top: 15px;
right: 10px;
font-size: 20px;
font-family: 'New Tegomin', serif;
height: 40px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 7px;
}
#chrome:hover {
cursor: pointer;
background: #595858;
}
#chrome:focus {
border: 2px solid #f3e3c2;
}
#text {
color: #f3e3c2;
font-family: 'New Tegomin', serif;
font-size: 20px;
user-select: none;
position: absolute;
top: 360px;
left: 0%;
text-align: justify;
animation-name: animate;
animation-duration: 1.2s;
animation-iteration-count: 1;
margin-left: 50px;
margin-right: 50px;
}
</style>
<body>
<a href="https://lb123658.github.io/cebolla/?extension=downloaded" id="a">
<button id="s">Back to Search</button></a>
<a href="https://chrome.google.com/webstore/detail/browse-in-darkness/kggpheiglkchibdbkcmncjokdlmoppfk" target="_blank">
<button id="chrome">Open Web Store</button></a>
<img id="logo" src="https://lb123658.github.io/cebolla/favicon.png">
<p id="title">How to install extension</p>
<p id="text"><b>NEW: This extension is now available on the Chrome Web Store.<br><br>How to install the Browse in Darkness extension in a few easy steps*<br>1. Open the ZIP file that contains the extension and there will be a folder inside that contains the extension.<br>2. Go to the extensions page of your browser. For Chrome that is "chrome://extensions" and Brave is "brave://extensions".<br>3. Click on the "Developer Mode" switch.<br>4. Click on the "Load unpacked" button and select the file that contains the extension.<br>5. The extension should be ready and will be in the extensions bar with a small yellow flame icon.<br><br>*For other browsers besides Brave and Chrome these steps may be different.</b> </p>
</body>
</html>