Shows all the screenshots for apps and games, instead of relying on that clunky carousel.
Google Play - Expand screenshot carousel by denilsonsa
Details
Authordenilsonsa
LicensePublic Domain
Categoryplay.google.com
Created
Updated
Size1.4 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name play.google.com - Expand screenshot carousel
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Shows all the screenshots, instead of relying on that clunky carousel.
@author Denilson
==/UserStyle== */
@-moz-document domain("play.google.com") {
/* Disables the carousel */
html .aoJE7e {
flex-wrap: wrap;
overflow-x: auto;
}
/* Disabling the right sidebar, making it show up after the main content. In other words, more space for the screenshots */
html .nRgZne {
display: block;
}
html .qZmL0,
html .o45e4d {
width: auto;
}
/* Reorganizing the right sidebar as a 3-column region at the bottom of the page. */
@media screen and (min-width: 960px) {
html .o45e4d {
display: flex;
flex-direction: row;
}
html .o45e4d > c-wiz {
flex: 1 1 auto;
}
}
/* Always expand the developer contact information. No need to hide it. */
html .jqSImf#developer-contacts {
display: block;
}
html .VMq4uf#developer-contacts-heading {
/* Shouldn't need this, but the elment .VVmwY further below has a negative -12px margin. So, the site already applies this stupid padding when the user expands this section. */
padding-bottom: 20px;
}
}