This style allow you to hide whatsapp sidebar.
I added shortcut to the extension [Alt+s] so I can use it to activate the stylus styles and deactivate it when I want to go to another chat.
Whatsapp sidebar hideable by muath-ye
Details
Authormuath-ye
LicenseNo License
Categoryweb.whatsapp.com
Created
Updated
Size966 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Whatsapp sidebar hideable
@version 20220519.09.07
@namespace userstyles.world/user/muath-ye
@description This style allow you to hide whatsapp sidebar.
I added shortcut to the extension [Alt+s] so I can use it to activate the stylus styles and deactivate it when I want to go to another chat.
@author muath-ye
@license No License
==/UserStyle== */
@-moz-document domain("web.whatsapp.com") {
@media screen and (min-width: 1701px) {
.two ._2i3T7 {
flex: 30%;
}
}
@media screen and (min-width: 1301px) and (max-width: 1700px) {
.two ._2i3T7 {
display: none;
}
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
.two ._2i3T7 {
display: none;
}
}
@media screen and (min-width: 901px) and (max-width: 1024px) {
.two ._2i3T7 {
display: none;
}
}
@media screen and (max-width: 900px) {
.two ._2i3T7 {
display: none;
}
}
}