Skip to content

Instantly share code, notes, and snippets.

@dio
Created January 7, 2023 09:28
Show Gist options
  • Save dio/40d5df4e0868968d3279ee0eb57096e4 to your computer and use it in GitHub Desktop.
Save dio/40d5df4e0868968d3279ee0eb57096e4 to your computer and use it in GitHub Desktop.
const statusURL = document.querySelector(`video[src*='blob:https://web.whatsapp.com']`).getAttribute('src'); const link = document.createElement('a'); link.href = statusURL; link.download = `${statusURL.split('.com/')[1]}.mp4`; document.body.appendChild(link); link.click(); document.body.removeChild(link);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment