Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Facebook Messenger - Make stickers larger
/* ==UserStyle==
@name Facebook Messenger - Make stickers larger
@namespace github.com/openstyles/stylus
@version 1.0.0
@license 0BSD
@var text u-size "Size" 160px
==/UserStyle== */
@-moz-document domain("www.messenger.com") {
[role="main"] [role="grid"] [data-scope="messages_table"] [aria-label*="sticker"] {
width: var(--u-size) !important; height: var(--u-size) !important;
background-size: contain !important;
background-position: bottom !important;
}
}
@-moz-document domain("www.facebook.com") {
[data-testid="mwchat-tab"] [data-scope="messages_table"] [aria-label*="sticker"] {
width: var(--u-size) !important; height: var(--u-size) !important;
background-size: contain !important;
background-position: bottom !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment