Makes the V3 vordebugger look like how it used to in V3's closed beta state.
YouTube V3 Beta Vordebugger by RysieQu
Details
AuthorRysieQu
LicenseNo License
CategoryYouTube
Created
Updated
Size836 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Optional: To make this more accurate, go to the config, category: NEWEST and turn off VORDEBUGGER_CONFIG_IS_SECTIONED.
You can also turn off HIDE_INACTIVE_VORDEBUGGER in category: INTERNAL CLIENT if you wish - it turns off the transparent autohide animation making it more accurate, but I don't exactly recommend it.
Source code
/* ==UserStyle==
@name YouTube V3 Beta Vordebugger
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Makes the V3 vordebugger look like how it used to in V3's closed beta state.
@author RysieQu
@var checkbox preset "Get rid of preset settings" 1
@var checkbox build "Get rid of build info" 1
@var checkbox desc "Get rid of setting description" 1
@preprocessor stylus
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/") {
if preset == 1 {
.vordebugger .logview-extra-buttons.preset-buttons {
display: none;
}
}
if build == 1 {
.vordebugger .ddd-build-info {
display: none;
}
}
if desc == 1 {
.vordebugger .internal-setting-description {
display: none;
}
}
}