Vencord / plugin-requests

Vencord plugin requests. Open the link below to create a request
https://github.com/Vencord/plugin-requests/issues/new?template=request.yml
27 stars 4 forks source link

Plugin that adds an icon next to people with an account under x days old #774

Open HollyDaCoder opened 1 week ago

HollyDaCoder commented 1 week ago

Plugin Description

a plugin that adds a warning symbol and a option to block or spoiler messages from users under a configurable amount of days old

Existing Plugin for other mod

nope!

Request Agreement

Scyye commented 1 week ago

use case?

HollyDaCoder commented 1 week ago

alot of new members are trolls, usually alts from banned people and are better to have their msgs hidden cus it might have some UNSAVORY content

sadan4 commented 1 week ago

if their account is new, wouldnt they also have the image

Scyye commented 1 week ago

for new server members

Feathers8 commented 1 week ago

Although that's a good idea for a separate request :D

Scyye commented 1 week ago

Although that's a good idea for a separate request :D

what is?

HollyDaCoder commented 1 week ago

to have "Hi I'm New Here"s hidden

Scyye commented 1 week ago
.newMemberBadge_ed263a {
    display: none;
}
HollyDaCoder commented 1 week ago

I meant hide members that have the "HI I'm New Here" badge

Scyye commented 1 week ago

I meant hide members that have the "HI I'm New Here" badge

[id^="chat-messages-"]:has(.newMemberBadge_ed263a) {
  display: none;
}

You can also do this to make it more "in your face" that they're new in the server;

[id^="chat-messages-"]:has(.newMemberBadge_ed263a) {
  background-color: red;
}
.newMemberBadge_ed263a {
  display: none;
}