Skip to content

Instantly share code, notes, and snippets.

@damzaky
Last active May 5, 2018 17:31
Show Gist options
  • Save damzaky/406ef041db6185de8132e218de842de8 to your computer and use it in GitHub Desktop.
Save damzaky/406ef041db6185de8132e218de842de8 to your computer and use it in GitHub Desktop.
How to download Imgur GIFV as MP4. Just copy paste this script to the console (CTRL+SHIFT+J on Chrome, CTRL+SHIFT+K on Firefox) and then press enter.
var q = document.createElement('a');
q.href = document.querySelector('source').src;
q.download = document.title;
q.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment