Skip to content

Instantly share code, notes, and snippets.

@yuya-oc
Last active October 21, 2018 13:32
Show Gist options
  • Save yuya-oc/facec2ef095100be86830423f8c2d914 to your computer and use it in GitHub Desktop.
Save yuya-oc/facec2ef095100be86830423f8c2d914 to your computer and use it in GitHub Desktop.
Show large album art on iTunes Store (TypeScript)
const source = document.getElementsByClassName("we-artwork__source")
const srcset = source[0].getAttribute('srcset');
if (srcset){
const imgURL = srcset.split(' ')[0].replace(/[^/]*\.jpg$/, "2000x0w.jpg")
window.open(imgURL)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment