-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
81 lines (72 loc) · 2.38 KB
/
index.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
<html>
<head>
<title>Mediasite Downloader</title>
<style>
body {
font-family: "Arial";
}
#wrapper {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.button {
display: inline-block;
text-align: center;
text-decoration: none;
vertical-align: middle;
padding: 25px 60px;
margin: 0;
font-size: 50px;
line-height: 60px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
color: transparent;
box-shadow: 0 0 0 1px #2DC6D6;
border: 0;
background: #fff;
cursor: alias;
position: relative;
}
#bmarklet::after {
content: '+ Drag to install';
color: #2DC6D6;
position: absolute;
left: 30px;
}
ol {
width: 600px;
padding-bottom: 10px;
font-size: 20px;
color: #818181;
}
ol li {
padding-bottom: 8px;
}
.noticeTutorial {
width: 600px;
color: #818181;
padding-top: 70px;
}
</style>
</head>
<body>
<a href="https://github.com/KLVN/MediasiteDownloader" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div id="wrapper">
<ol start="0">
<li>(Mobile devices are not supported)</li>
<li>Drag the button below onto your browsers bookmarks bar</li>
<li>Open a Mediasite lecture</li>
<li>Click on newly added bookmark</li>
<li>A dialog will pop up: Copy the title of the lecture, right-click on the thumbnail(s), "Save (link) as..." and paste in the copied title to rename the file</li>
<li>Download begins</li>
</ol>
<a id="bmarklet" class="button" href="javascript:(function(){document.body.appendChild(document.createElement('script')).src='https://cdn.jsdelivr.net/gh/KLVN/MediasiteDownloader@master/MSBookmarklet.min.js?'+new Date().getTime();})();">Mediasite DL</a>
<div class="noticeTutorial">🇩🇪: Der MediasiteDownloader kann ein Video nicht herunterladen, weil es nicht als .mp4 zur Verfügung steht? Dann sieh dir diese Anleitung an: <a href="Anleitung_Mediasite.pdf" target="_blank">Link</a><br>(Anleitung erstellt von F. S., Danke!)</div>
</div>
</body>
</html>