-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
77 lines (67 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/fontawesome.min.css">
<link rel="stylesheet" href="css/loading.css">
<script src="js/jquery.js"></script>
<script src="js/loadash.js"></script>
<script src="js/popup.js"></script>
<style>
body {
margin: 10px;
height: 100%;
}
img.loading {
display: block;
margin: auto;
}
.container-div {
padding: 10px;
}
div.overlay {
background-color: black;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0.5;
}
.hide {
display: none;
}
button.search {
border-radius: 50%;
padding: 50px;
font-size: 23px;
display: block;
margin: auto;
margin-top: 90px;
}
</style>
</head>
<body>
<div class="container-div">
<p>
You can only load urls from youtube
</p>
<form action="" class="" id="queryForm">
<div class="form-group">
<input type="text" name="query" id="query" class="form-control" placeholder="youtube link" value="https://www.youtube.com/watch?v=KBoBIrqwf8o">
</div>
<div class="hide" id="ext-dwn">
<p>For better experience you can install the chrome extenstion just click the button bellow</p>
<a href="https://chrome.google.com/webstore/detail/clickclean/ghgabhipcejejjmhhchfonmamedcbeod" class="btn btn-danger" target="_blank">install</a>
</div>
<button type="submit" class="btn btn-primary search" id="loadVideo">
<i class="fa fa-search"></i>
</button>
</form>
</div>
<div class="overlay">
<img src="images/video.png" alt="loading" class="ld ld-heartbeat loading">
</div>
</body>
</html>