Skip to content

Instantly share code, notes, and snippets.

View lihuelworks's full-sized avatar
👨‍💻
Programando...

Mathias Lihuel Gomez lihuelworks

👨‍💻
Programando...
View GitHub Profile
@lihuelworks
lihuelworks / gist:63c857ded1c13887093588e537070396
Last active April 7, 2024 23:38
Bookmarklet - recover private/deleted video video via Wayback Machine
javascript:(function() {
var ytUrl = window.location.href;
var useVideoId = false;
if (ytUrl.includes("youtube.com") || ytUrl.includes("youtu.be")) {
var useVideoIdInput = confirm("Do you want to use the video ID of the current YouTube video?");
if (useVideoIdInput) {
useVideoId = true;
}
}