Skip to content

Instantly share code, notes, and snippets.

@jurosh
Last active December 2, 2021 03:58
Show Gist options
  • Save jurosh/23257face52712b9433d86f35d468aee to your computer and use it in GitHub Desktop.
Save jurosh/23257face52712b9433d86f35d468aee to your computer and use it in GitHub Desktop.
Relive.cc video downloader
// Open BROWSER CONSOLE (F12) and place inside this content
// This will open source file...
// You need to save it manually with `ctrl + s`
(function openVideoFile() {
const downa = document.createElement('a');
downa.id = 'videofileClickme'
downa.href = document.querySelector("meta[property=\"og:video:secure_url\"]").content
downa.download = 'MyRide';
document.body.appendChild(downa)
videofileClickme.click();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment