Last active
May 5, 2018 17:31
-
-
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.
This file contains 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
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