Skip to content

Roblox | Hide Sensitive Content by 7kayoh

Screenshot of Roblox | Hide Sensitive Content

Details

Author7kayoh

LicenseMIT

Categoryroblox

Created

Updated

Size1.4 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

This userstyle hides any sensitive content of your Roblox account by applying a blur layer over it. Useful when you are in public, or is doing a livestream while on the Roblox website.

You can always reveal the blurred content by hovering the mouse over it. Userstyle settings are provided such as blur size, duration, delay, etc.

Right now, this userstyle blurs the following content:

  • The amount of Robux you have
  • The transactions page
  • The settings page
  • The remaining balance text when you are buying something with Robux
  • Xsolla payment window (related to billing)
  • DevEx tab
  • The input box for your phone number (in account settings)

The Robux counter at the top navigation bar has been removed

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Roblox | Hide Sensitive Content
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Hiding sensitive content to public (e.g. payment, currency, account sensitive settings etc)
@author         7kayoh<git@7kayoh.net>
@preprocessor stylus
@var text blurSize "Blur size (..px)" 15px
@var text unblurDelay "Unblur delay (..s)" 0s
@var text blurDuration "Blur duration (..s)" 0.6s
==/UserStyle== */

censor()
    filter blur(blurSize)
    transition filter 0s, scale 0s
    transition-timing-function cubic-bezier(0,-0.01,.26,.99)
    transition-delay 0
    scale 95%
    
uncensor()
    filter blur(0)
    transition filter blurDuration, scale blurDuration
    transition-timing-function cubic-bezier(0,-0.01,.26,.99)
    transition-delay unblurDelay
    scale 100%

@-moz-document domain("roblox.com")
    #nav-robux-amount {
        display: none
    }
    
    #nav-robux-balance, .modal-footer.text-footer, iframe.xsolla-payment-default, #transactions-page-container, #DeveloperExchangeTab, #phone-text-box, #user-account
        censor()
        
    #nav-robux-balance:hover, .modal-footer.text-footer:hover, iframe.xsolla-payment-default:hover, #transactions-page-container:hover, #DeveloperExchangeTab:hover, #phone-text-box:hover, #user-account:hover
        uncensor()

Reviews

No reviews yet.