Skip to content

Instantly share code, notes, and snippets.

@comster
Last active October 1, 2019 23:45
Show Gist options
  • Save comster/ff809763c6da40b1727176c8d1b338fb to your computer and use it in GitHub Desktop.
Save comster/ff809763c6da40b1727176c8d1b338fb to your computer and use it in GitHub Desktop.
Shortcut to download twitter profile images

Download Twitter Avatar Bookmarklet

Instructions

To install this bookmarklet

Make a new bookmark in your browser (right-click on the bookmarks bar and click Add Page...)

  • For the "Name" you might put "Download twitter avatar".
  • Copy the code block below, paste this into the "Location" of a new bookmark.

Code

200x200 Image

javascript:(function(){var imgSrc = document.querySelector('main > div > div > div > div > div > div:nth-child(2) > div > div > div > div > div > a > div > div > div:nth-child(2) > div img').src;window.open(imgSrc,'_blank');})();

400x400 Image

javascript:(function(){document.querySelector('main > div > div > div > div > div > div:nth-child(2) > div > div > div > div > div > a > div > div > div:nth-child(2) > div img').click();setTimeout(function(){var imgSrc=document.querySelector('div[aria-modal="true"] > div > div > div > div > div:nth-child(2) > div > img').src;window.open(imgSrc,'_blank');}, 500);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment