Skip to content

Instantly share code, notes, and snippets.

@alash3al
Last active November 2, 2015 18:00
Show Gist options
  • Save alash3al/a416db7a7fa519ffd74a to your computer and use it in GitHub Desktop.
Save alash3al/a416db7a7fa519ffd74a to your computer and use it in GitHub Desktop.
just run it in the console, and the browser will show you the download dialog
// copy & paste in the browser console "F12" and press ENTER
// then the browser will show you the download dialog
// this script makes use of HTML5 'download' attribute
// by Mohammed Al Ashaal <www.alash3al.xyz>
(function(){
dl = document.createElement("a")
dl.href = window.location
dl.download = ""
dl.click()
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment