Skip to content

Instantly share code, notes, and snippets.

@yrsegal
Created October 3, 2019 20:43
Show Gist options
  • Save yrsegal/7a71f5e9c0a14c116d38c604677c1a4a to your computer and use it in GitHub Desktop.
Save yrsegal/7a71f5e9c0a14c116d38c604677c1a4a to your computer and use it in GitHub Desktop.
A simple set of code for user-defined js browser extensions, to make Scryfall Tagger show full cards instead of just art in search.
.search-results-grid--item .illustration .frame {
padding-bottom: 136% !important;
}
.illustration .frame {
overflow: visible !important;
}
$(".illo").each(function(){
$(this).attr("src", $(this).attr("src").replace(/art_crop/, "border_crop"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment