Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eidantoei/9489263 to your computer and use it in GitHub Desktop.
Save eidantoei/9489263 to your computer and use it in GitHub Desktop.
Instagram: replace photo to img tag
var imgElm=document.createElement('img');imgElm.style.width='100%';imgElm.src=document.getElementsByClassName('Image')[0].style.backgroundImage.replace(/url\((.*)\)/,"$1");document.querySelectorAll('.iMedia')[0].insertBefore(imgElm);var gomiElm = document.querySelectorAll('.iWithTransition')[0];gomiElm.parentNode.removeChild(gomiElm);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment