YouTube Music volume slider by pabli

Details
Authorpabli
LicenseMIT
Created atMay 27, 2022 20:31
Updated atMay 27, 2022 20:36
Applies toyoutube
Statistics
Learn how we calculate statistics in the FAQ.
Total views41
Total installs571
Weekly installs116
Description
Bigger and always visible volume slider on music.youtube.com
☕ Support me on ko-fi
Notes
Userstyle doesn't have notes.History
Daily snapshots of style statistics.
No style history. Come back in a couple of days.Source code
/* ==UserStyle==
@name YouTube Music volume slider
@namespace https://github.com/pabli24
@version 1.0.0
@description Bigger and always visible volume slider on music.youtube.com
@author Pabli
@homepageURL https://userstyles.world/style/4891/youtube-music-volume-slider
@supportURL https://userstyles.world/style/4891/youtube-music-volume-slider
@license MIT
@preprocessor stylus
@var checkbox opac "Always visible" 1
@var number wdth "Width (px)" ['px', 200, 1, null, 1]
==/UserStyle== */
@-moz-document domain("music.youtube.com") {
if opac {
.volume-slider.ytmusic-player-bar {
opacity: 1
}
}
.volume-slider.ytmusic-player-bar, .expand-volume-slider.ytmusic-player-bar {
width: wdth
if opac {pointer-events: auto}
}
#right-controls {
width: auto !important
}
}