-
-
Save AtharvaVaidya/e7dad5803803f567bd2a to your computer and use it in GitHub Desktop.
know exactly when a photo was instagramed
This file contains hidden or 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
// 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