CSS code of an extension that shows the full title of YT videos, ported to Stylus for ease of toggling on/off.
Original extension: https://chrome.google.com/webstore/detail/youtube-full-title-for-vi/pgpdaocammeipkkgaeelifgakbhjoiel
Authorchromiacat
LicenseGNU General Public License v3.0
Categoryyoutube
Created
Updated
Size1.7 kB
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
CSS code of an extension that shows the full title of YT videos, ported to Stylus for ease of toggling on/off.
Original extension: https://chrome.google.com/webstore/detail/youtube-full-title-for-vi/pgpdaocammeipkkgaeelifgakbhjoiel
2022/8/21: Added CSS to show full chapter titles.
2022/9/12: Chapter titles showed twice, made a possible fix.
2022/10/5: Video titles in channel "Videos" tab now show the full title.
2022/10/23: Now expands titles on home page.
/* ==UserStyle==
@name Full YT Titles
@version 20240211.14.19
@namespace https://userstyles.world/user/chromiacat
@description CSS code of an extension that shows the full title of YT videos, ported to Stylus for ease of toggling on/off.Original extension: https://chrome.google.com/webstore/detail/youtube-full-title-for-vi/pgpdaocammeipkkgaeelifgakbhjoiel
@author chromiacat
@license GNU General Public License v3.0
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* ==UserStyle==
@name Full YT Titles
@version 2022.8.21
@namespace userstyles.world/user/chromiacat
@description CSS code of an extension that shows the full title of YT videos, ported to Stylus for ease of toggling on/off.
@author chromiacat
@license CC
==/UserStyle== */
#video-title.ytd-playlist-panel-video-renderer {
max-height: unset !important;
-webkit-line-clamp: unset !important;
}
#video-title.ytd-compact-video-renderer {
max-height: unset !important;
-webkit-line-clamp: unset !important;
}
h1.ytd-watch-metadata {
max-height: unset !important;
-webkit-line-clamp: unset !important;
}
h4.ytd-macro-markers-list-item-renderer {
max-height: unset !important;
-webkit-line-clamp: unset !important;
/* display: unset !important; */
}
#video-title.yt-simple-endpoint.ytd-grid-video-renderer {
max-height: unset !important;
-webkit-line-clamp: unset !important;
display: unset !important;
}
#video-title.ytd-rich-grid-media {
max-height: unset !important;
-webkit-line-clamp: unset !important;
}
.title.reel-player-header-renderer{
word-wrap: break-word !important;
-webkit-line-clamp: unset !important
}
}