Skip to content

Instantly share code, notes, and snippets.

@boppreh
Created May 17, 2022 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boppreh/64f98fa499c946d3e38b2b852f9517fb to your computer and use it in GitHub Desktop.
Save boppreh/64f98fa499c946d3e38b2b852f9517fb to your computer and use it in GitHub Desktop.
Give a grey title to visited Youtube links based on browser history, without enabling watch history
# Save to C:\Users\{USER}\AppData\Roaming\Mozilla\Firefox\Profiles\{PROFILE_NAME}\chrome\userContent.css
# And enable "toolkit.legacyUserProfileCustomizations.stylesheets" on about:config
@-moz-document domain(www.youtube.com)
{
a:visited {
color: grey !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment