Skip to content

Instantly share code, notes, and snippets.

@albertstartup
Created December 31, 2015 03:42
Show Gist options
  • Save albertstartup/74e8904c19bf766ad2b1 to your computer and use it in GitHub Desktop.
Save albertstartup/74e8904c19bf766ad2b1 to your computer and use it in GitHub Desktop.
know exactly when a photo was instagramed
// the page url must be instagram.com/p/
var node = document.getElementsByClassName("_379kp")[0]
var date = new Date(node.attributes["datetime"].value)
node.innerText = date.toLocaleString()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment