Hides ads on Picrew imagemakers and adds a dark background. Designed to only work when an imagemaker is loaded, so it won't work when browsing.
Hide Picrew Ads + Dark BG by strawberry-meowcow

Details
Authorstrawberry-meowcow
LicenseGNU GPLv3
Categorypicrew.me
Created
Updated
Code size674 B
Code checksum9f76aa45
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
If Picrew gives you a message about detecting an adblocker, disable the style, reload Picrew, and reenable the style.
Source code
/* ==UserStyle==
@name Hide Picrew Ads + Dark BG
@description Hides Picrew ads on imagemakers and adds a dark background.
@author Strawberry-Meowcow
@namespace https://github.com/strawberry-meowcow
@version 1.0
@license GNU GPLv3
==/Userstyle== */
@-moz-document url-prefix("https://picrew.me/en/image_maker") {
div.play-Container_Right,
div.play-Container_Left {
opacity: 0%;
}
body > div:first-child {
display: none;
}
.play-Container {
background-color: #333333;
display: flex;
height: 100%;
}
}
@-moz-document domain("picrew.me") {
.view_pc .play-Imagemaker {
height: 100% !important;
}
}