Skip to content

Instantly share code, notes, and snippets.

@AtharvaVaidya
Forked from albertstartup/instawhen.js
Created December 31, 2015 04:57
Show Gist options
  • Save AtharvaVaidya/e7dad5803803f567bd2a to your computer and use it in GitHub Desktop.
Save AtharvaVaidya/e7dad5803803f567bd2a 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