Created
May 17, 2022 19:49
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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