Full list of supported sites
This commit is contained in:
parent
37c8ecb97d
commit
6513cca8d7
3 changed files with 47 additions and 2 deletions
|
@ -12,7 +12,7 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Univerter <p>v4.0</p>
|
<h1>Univerter <p>v5.0</p>
|
||||||
<p style="color: lightgray">And still javascript free...</p>
|
<p style="color: lightgray">And still javascript free...</p>
|
||||||
<hr>
|
<hr>
|
||||||
</h1>
|
</h1>
|
||||||
|
@ -52,6 +52,13 @@
|
||||||
</form>
|
</form>
|
||||||
<br>
|
<br>
|
||||||
<p>Univerter was designed for youtube, but if you need something different please consult <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md">this list</a> to see if your site is there. Be warned, though, they are all untested, so please report issues you encounter!</p>
|
<p>Univerter was designed for youtube, but if you need something different please consult <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md">this list</a> to see if your site is there. Be warned, though, they are all untested, so please report issues you encounter!</p>
|
||||||
|
<p>Notable supported sites include:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Youtube</li>
|
||||||
|
<li>Twitter</li>
|
||||||
|
<li>TikTok</li>
|
||||||
|
</ul>
|
||||||
|
<p>For a full list of things that have been tested (including !!NSFW!!) you can find them <a href="./supported">here</a></p>
|
||||||
<hr>
|
<hr>
|
||||||
<p><a target="_blank" href="https://ko-fi.com/bingus_violet">Please consider donating</a> or host the website yourself! Anything
|
<p><a target="_blank" href="https://ko-fi.com/bingus_violet">Please consider donating</a> or host the website yourself! Anything
|
||||||
helps! (Check <a href="https://codeberg.org/Bingus_Violet/Univerter">Codeberg</a> for more info)</p>
|
helps! (Check <a href="https://codeberg.org/Bingus_Violet/Univerter">Codeberg</a> for more info)</p>
|
||||||
|
@ -59,6 +66,7 @@
|
||||||
Powered by <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/">yt-dlp</a>
|
Powered by <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/">yt-dlp</a>
|
||||||
<br>
|
<br>
|
||||||
Inspired by <a href="https://cobalt.tools">Cobalt</a>
|
Inspired by <a href="https://cobalt.tools">Cobalt</a>
|
||||||
|
Happy 100 commits :)
|
||||||
</p>
|
</p>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,8 @@ h1>* {
|
||||||
|
|
||||||
p,
|
p,
|
||||||
select,
|
select,
|
||||||
input {
|
input,
|
||||||
|
li {
|
||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,6 +49,10 @@ input {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgb(125, 125, 255)
|
||||||
|
}
|
||||||
|
|
||||||
.col-sm-3 {
|
.col-sm-3 {
|
||||||
outline: white solid 2px
|
outline: white solid 2px
|
||||||
}
|
}
|
||||||
|
@ -70,3 +75,7 @@ input:hover {
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
28
static/supported/index.html
Normal file
28
static/supported/index.html
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="../style.css">
|
||||||
|
|
||||||
|
<title>Supported Sites</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1>Supported Sites <p>(INCLUDES NSFW)</p>
|
||||||
|
<hr>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<p>Univerter was designed for youtube, but if you need something different please consult <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md">this list</a> to see if your site is there. Be warned, though, they are all untested, so please report issues you encounter!</p>
|
||||||
|
<p>Tested and actively supported sites include:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Youtube</li>
|
||||||
|
<li>Twitter</li>
|
||||||
|
<li>TikTok</li>
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in a new issue