Disney+: mask the profile name
Blurs the profile name in the nav bar so it does not leak into screenshots or screen shares.
Code to copy
/* Blur the profile name in the nav bar; reveal it on hover */
[data-testid="global-nav"] [data-testid*="profile-name" i],
[data-testid="global-nav"] [class*="profilename" i] {
filter: blur(5px) !important;
transition: filter 0.15s ease;
}
[data-testid="global-nav"] [data-testid*="profile-name" i]:hover,
[data-testid="global-nav"] [class*="profilename" i]:hover {
filter: blur(0) !important;
}
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's CSS panel and save — the effect appears instantly.
Rate this example
No ratings yet — be the first.