-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
103 lines (93 loc) · 3.79 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
<!doctype html>
<html>
<head>
<title>Udemy Downloader</title>
<meta charset="utf-8">
<script type="text/javascript" src="Plugins/jquery-3.5.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="Plugins/datatables.min.css"/>
<script type="text/javascript" src="Plugins/datatables.min.js"></script>
<link rel="stylesheet" href="Plugins/Bootstrap-4-4.1.1/glyphicon.css">
<link rel="stylesheet" href="css/custom.css">
<script src="background.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-3 p-0 m-0 text-white">
<div id="left-side">
<div id="left-brand">
<img src="/logo.png" class="brand-logo" style="width:50%; margin-bottom:25px;">
<span>Udemy Downloader</span>
</div>
<ul class="nav left-side-menu">
<li class="active">
<a data-toggle="pill" href="#home"> <span class="glyphicon glyphicon-home"></span>
Home</a>
</li>
<li>
<a data-toggle="pill" href="#down"><span class="glyphicon glyphicon-search"></span>
F.A.Q.
</a>
</li>
<li class="donate" style="margin-top:25px;">
<a href="https://www.patreon.com/ohmcodes" target="_blank"> <span class="glyphicon glyphicon-gift" style="font-size:16px;"></span>
Give Thanks.</a>
</li>
</ul>
<div class="fixed-bottom version text-left pl-4" style="font-size:12px"></div>
</div>
</div>
<div class="col-md-9 p-0 m-0">
<div class="tab-content">
<div id="home" class="tab-pane fade in show active">
<div class="col-md-12 p-0 m-0">
<div class="sonar-wrapper">
<div class="sonar-emitter">
<div class="sonar-wave">
</div>
</div>
</div>
<div class="btn-container">
<div class="btn-text">
<button id="analyze" class="btn btn-info btn-xl">My Courses</button>
</div>
</div>
<div class="text-center mt-3" id="counter">
<i id="current-text"></i>
<i id="total-text"></i>
</div>
</div>
<div id="example" class="">
</div>
</div>
<div id="social" class="tab-pane p-4">
<h1>Social Media</h1>
<p>
<b>Facebook : </b> facebook<br>
<b>Instagram : </b> instagram
</p>
</div>
<div id="down" class="tab-pane p-4">
<h1>F.A.Q.</h1>
<br>
<h4>• Download all</h4>
<p> Change settings </br>
<b>Chrome: </b> chrome://settings/downloads
</br>
<b>Brave browser :</b> Settings > Downloads > Turn off (Ask where to save each file before downloading)
</p>
<h4>• Download Folder </h4>
<p style="font-size:14px;">
<b>"Downloads\Udemy Download\INSTRUCTORNAME\COUSENAME\VIDEONAME.mp4"</b></br>
</p>
<h4>• Bug and Error</h4>
<p>
you can report on github issues - <a href="https://github.com/ohmcodes/UdemyDownloader/issues" target="_blank"><b>visit</b></a>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>