Makes everything on the page invisible except the Wings games. Easily modifiable to show another team.
the only blaseball games that matter by monorail

Details
Authormonorail
LicenseNo License
Categoryblaseball
Created
Updated
Code size640 B
Code checksum6154bd7a
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name the only blaseball games that matter
@version 20211103.23.48
@namespace userstyles.world/user/monorail
@description Makes everything on the page invisible except the Wings games. Easily modifiable to show another team.
@author monorail
@license No License
==/UserStyle== */
@-moz-document url("https://www.blaseball.com/league") {
.Main > *, .Main-Body > *, .GameWidget, .react-toast-notifications__container css-11nijy0 {
display: none;
}
.Main-Body, .Main-Body > ul {
display: block;
}
.GameWidget[aria-label^="Wild"], .GameWidget[aria-label$="Wings"] {
display: grid;
}
}