Created
January 7, 2023 09:28
-
-
Save dio/40d5df4e0868968d3279ee0eb57096e4 to your computer and use it in GitHub Desktop.
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
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