Skip to content

Instantly share code, notes, and snippets.

@splorp
Last active January 29, 2021 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save splorp/5e366c38c8454a9ab5001824f89ae9cc to your computer and use it in GitHub Desktop.
Save splorp/5e366c38c8454a9ab5001824f89ae9cc to your computer and use it in GitHub Desktop.
Nab Full Resolution Images From Discogs
if (domain === "img.discogs.com") {
//
// From @gertcha on GitHub: https://github.com/qsniyg/maxurl/issues/429
// Source URI:
// https://img.discogs.com/MjmbFRJJih89NH1vTPzlL4hV-8Q=/fit-in/600x600/filters:strip_icc():format(jpeg):mode_rgb():quality(90)/discogs-images/R-12801670-1542565929-6791.jpeg.jpg
// Modified URI:
// https://www.discogs.com/image/R-12801670-1542565929-6791.jpeg
//
return src.replace(/^[a-z]+:\/\/[^/]+\/[^/]+=\/.*\/discogs-images\/([^/?#]+)\.[^/.]+(?:[?#].*)?$/, "https://www.discogs.com/image/$1");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment