This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpopup.html
194 lines (172 loc) · 4.34 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html lang="es">
<head>
<title>Crunchyroll Premium</title>
<meta charset="utf-8">
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="card">
<div class="box">
<div class="img">
<img src="logo.png">
</div>
<h2>Crunchyroll<br><span>Reproductor iFrame</span></h2>
<p>Proyecto de código abierto, no dude en consultar el código fuente.</p>
<div class="settings">
<input type="checkbox" id="forcemp4" name="forcemp4">
<label for="forcemp4"><strong>Forzar MP4</strong> (chromecast) </label>
<br />
<input type="checkbox" id="webvideocaster" name="webvideocaster" checked>
<label for="webvideocaster"><strong>Mostrar botón de transmisión</strong> (WebVideoCaster) </label>
<br />
<input type="checkbox" id="aseguir" name="aseguir" checked>
<label for="aseguir"><strong>Reproducción</strong> automática </label>
</div>
<br />
Mostrar faltando <input type="number" id="cooldown" style="width: 50px;" min="0" value="5"> segundos.
<br /><br />
Descargar WebVideoCaster <a href="https://www.webvideocaster.com/home" target="_blank">aquí</a>.
<table style="width: 100%">
<tr>
<td>
<h3><abbr title="(desactivado)"><a href="https://github.com/itallolegal"
target="_blank">Itallolegal</a></abbr>
<br><span>Creador</span>
</h3>
</td>
<td>
<h3><a href="https://github.com/Dev4Mod" target="_blank">Dev4Mod</a><br><span>Dev</span></h3>
</td>
<td>
<h3><a href="https://github.com/virtualox-sys" target="_blank">VirtualOx-sys</a><br><span>Mantenedor</span></h3>
</td>
</tr>
</table>
<span>
<ul>
<li><a href="https://github.com/VirtualOx-sys/crunchyroll-Premium" target="_blank"><i class="fa fa-github"
aria-hidden="true"></i></a></li>
<li><a href="https://github.com/VirtualOx-sys/crunchyroll-Premium/issues" target="_blank"><i
class="fa fa-font-awesome" aria-hidden="true"></i></a></li>
</ul>
</span>
</div>
</div>
</body>
</html>
<script src="popup.js"></script>
<style>
html {
position: relative;
min-width: 310px;
min-height: 500px;
height: 100%;
}
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background: #fbfbfb;
}
.card {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 290px;
min-height: 500px;
background: #fff;
box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
border-radius: 10px;
transition: 0.5s;
}
.card:hover {
box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
}
.card .box {
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
text-align: center;
padding: 20px;
box-sizing: border-box;
width: 100%;
}
.card .box .settings {
text-align: left;
}
.card .box .img {
width: 100px;
height: 100px;
margin: 0 auto;
border-radius: 50%;
overflow: hidden;
}
.card .box .img img {
width: 100%;
height: 100%;
}
.card .box h3 {
font-size: 14px;
color: #262626;
margin: 20px auto;
}
.card .box a {
color: #f47521;
}
.card .box table a {
font-size: 14px;
margin: 20px auto;
text-decoration: none;
color: #262626;
}
.card .box h3 span {
font-size: 10px;
background: #e5f4fa;
color: #4a91d1;
display: inline-block;
margin: 3px;
padding: 4px 10px;
border-radius: 15px;
}
.card .box h2 {
font-size: 20px;
color: #262626;
margin: 20px auto;
}
.card .box h2 span {
font-size: 14px;
background: #f47521;
color: #fff;
display: inline-block;
padding: 4px 10px;
border-radius: 15px;
}
.card .box p {
color: #262626;
}
.card .box span {
display: inline-flex;
}
.card .box ul {
margin: 0;
padding: 0;
}
.card .box ul li {
list-style: none;
float: left;
}
.card .box ul li a {
display: block;
color: #aaa;
margin: 0 10px;
font-size: 20px;
transition: 0.5s;
text-align: center;
}
.card .box ul li:hover a {
color: #f47521;
}
</style>