Skip to content

Instantly share code, notes, and snippets.

@tkoz0
Last active September 22, 2023 14:06
Show Gist options
  • Save tkoz0/29625fb6520a2ea31e8ec75249d014e1 to your computer and use it in GitHub Desktop.
Save tkoz0/29625fb6520a2ea31e8ec75249d014e1 to your computer and use it in GitHub Desktop.
notes for saving files from websites (includes: twitter)
open all the art images in new tabs
1. use developer menu to search ".jpg" and find the first image of importance to get the class name
2. paste this into the developer console (using the class name found)
[].slice.call(document.getElementsByClassName('WorkImage__StyledImage-gl8mvm-1')).forEach(a => window.open(a.src,'_blank'))
saving videos - see twdown.net
saving videos (no longer works)
1. use developer menu to search for "tweet_video" in the html
2. keep looking for a url like https://video.twimg.com/tweet_video/<some letters and numbers>.mp4
3. save it
(as of 2023-07-21 this seems to not work anymore)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment