[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/vt/ - Virtual Youtubers

Search:


View post   

>> No.63998336 [View]
File: 2 KB, 256x121, Screenshot from 2023-12-06 10-45-06.png [View same] [iqdb] [saucenao] [google]
63998336

>>63995689
I pre-empt those issues in almost everything by writing scripts / CSS / mods to remove PII from stuff.
Well, not so much remove, but mostly modify it in some way so I know what account is even active but nobody else would.

Simple example, Twitter:
/* Hide all (known) instances of a username */
div[aria-label="Account menu"] {
outline:1px solid #fff!important;
width:100px;
left:70px;
}
div[aria-label="Account menu"] > .css-1dbjc4n:nth-child(2)
{
display:none!important;
}

/* Alias color to specific Twitter instance */
div[aria-label*="Steve"]:after
{
content:" ";
width:100px;
height:100px;
background-color:#f00;
}
Replace that "Steve" with your own display name (exact case match), boom, done.
It aliases the color red over the profile picture so I know what account I have logged in. You can copy paste that last rule as many times as you have Twitter accounts, assigning each their own color. (or another image entirely if you wanted to)

Navigation
View posts[+24][+48][+96]