Restores full length upload date and view count in video description. Hover over the description to see the relative view count and upload date again.
YouTube Full Upload Date and View Counter by kittymmeow
Details
Authorkittymmeow
LicenseCC-BY-NC-SA-4.0
Categoryyoutube
Created
Updated
Size1.5 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Uses the tooltip that shows when you hover over the upload date to make the complete upload date ("Jan 15, 2023") visible instead of the relative date ("1 year ago"), and the full length view count ("25,000 views") instead of the shortened view count ("25K views").
Inspired by YouTube - Show Full View Count and Date (unless hovering) (CC-BY-NC-SA-4.0) by lednerg on Greasy Fork, rewritten for latest interface changes and for more consistent functionality.
Likely not compatible with "old layout" userstyles, this is designed for the default unmodified YouTube interface.
Source code
/* ==UserStyle==
@name YouTube Full Upload Date and View Counter
@version 2024.12
@namespace https://userstyles.world/user/kittymmeow
@description Restores full length upload date and view count in video description.
@author kittymmeow
@license CC-BY-NC-SA-4.0
==/UserStyle== */
@-moz-document domain("youtube.com") {
#description tp-yt-paper-tooltip {
width: 100%;
top: 13px!important;
left: 0px!important;
}
#description #info-container {
display: none;
}
#description:hover tp-yt-paper-tooltip {
display: none!important;
}
#description:hover #info-container {
display: inline-flex;
}
#description tp-yt-paper-tooltip #tooltip {
display: block !important;
font-size: 1.4rem;
font-weight: 500;
color: var(--yt-spec-text-primary);
background: transparent;
margin: 0;
padding: 0 12px;
box-sizing: border-box;
border-radius: 0;
}
#description #date-text:before,
#description #info:before,
#description #date-text[aria-label=""] + #info span:nth-child(3):before,
#description #date-text[aria-label=""] + #info a:nth-child(1):before {
content: "•";
font-weight: 500;
margin: 0 0.2em 0 -0.25em;
}
#description #date-text[aria-label=""]:before,
#description #date-text[aria-label=""] + #info:before {
content: "";
}
}