Last active
April 15, 2020 16:26
-
-
Save David-Lor/a62ed8e70fd4e71e954b47dbd0c16711 to your computer and use it in GitHub Desktop.
Redirect to Youtube Studio Classic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
YOUTUBE STUDIO CLASSIC REDIRECTOR | |
Open this file on your web browser and it will redirect to the Classic Youtube Studio webpage. | |
Created by https://github.com/David-Lor | |
--> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Youtube Studio Classic Redirector</title> | |
</head> | |
<body> | |
<p>Redirecting to <a href="#" class="yt_url">Youtube Studio Classic</a>, click <a href="#" class="yt_url">here</a> if you are not redirected...</p> | |
<script> | |
const timestamp = new Date().getTime(); | |
const url = "https://www.youtube.com/my_videos?o=U&ar=" + timestamp; | |
const hrefs = document.getElementsByClassName("yt_url"); | |
Array.from(hrefs).forEach(element => { | |
element.setAttribute("href", url); | |
}); | |
window.location.href = url; | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
YOUTUBE STUDIO CLASSIC UPLOAD REDIRECTOR | |
Open this file on your web browser and it will redirect to the Classic Youtube Studio Uploader webpage. | |
Created by https://github.com/David-Lor | |
--> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Youtube Studio Classic Uploader Redirector</title> | |
</head> | |
<body> | |
<p>Redirecting to <a href="#" class="yt_url">Youtube Studio Classic Uploader</a>, click <a href="#" class="yt_url">here</a> if you are not redirected...</p> | |
<script> | |
const timestamp = new Date().getTime(); | |
const url = "https://www.youtube.com/upload?redirect_to_creator=true&fr=4&nv=1&ar=" + timestamp; | |
const hrefs = document.getElementsByClassName("yt_url"); | |
Array.from(hrefs).forEach(element => { | |
element.setAttribute("href", url); | |
}); | |
window.location.href = url; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Direct access links: