Jellyfin Forum
Anyone managed to anonymize streaming? - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: Anyone managed to anonymize streaming? (/t-anyone-managed-to-anonymize-streaming)



Anyone managed to anonymize streaming? - megabuffalo - 2024-05-13

Has anyone managed to anonymize the "Who is Streaming" in the Admin Panel?
The feature is great, but I don't really want to know who exactly is watching something so looking for a way to hide the usernames viewing?


RE: Anyone managed to anonymize streaming? - TheDreadPirate - 2024-05-13

AFAIK, there is no way to do this without modifying Jellyfin. I don't think a plugin can do something like this.


RE: Anyone managed to anonymize streaming? - TeaTotaled - 2024-05-13

Good question. I have been using CSS selectors to hide things that I dont want. Go to your Dashboard -> General -> "Custom CSS code" and add this:

Code:
.sessionCardFooter.cardFooter > div > div.sessionUserName  {display: none; width:0  !important }
.sessionCardFooter.cardFooter > div > div.activitylogUserPhoto {display: none; width:0  !important}

This hides both the User Name, and Photo. The data is still there in the HTML, but you dont see it.