Last active
January 29, 2021 06:03
-
-
Save splorp/5e366c38c8454a9ab5001824f89ae9cc to your computer and use it in GitHub Desktop.
Nab Full Resolution Images From Discogs
This file contains 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
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