View Single Post
5spdvl's Avatar
Posts: 220 | Thanked: 66 times | Joined on Aug 2010 @ Melbourne, Australia
#851
Originally Posted by b666m View Post
the css file
(just look a few pages back - there is the discussion about this topic ^^)



yep.
just edit the .js-file.

Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }
to
Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }

if (item.name_str != "" && item.self) {
        name_tag.textContent = "b666m";
    }
(replace b666m for your desired nick ^^)
haven't tested it but it should work
This worked great to remove the "You:" by replacing it with just "", but how do you remove the sender's name from the message bubble?

Perhaps:

if (item.name_str != "") {
name_tag.textContent = item.name_str;
}

if (item.name_str != "" && item.Other) {
name_tag.textContent = "";

Or maybe sender?