Since a few days ago, there are some troll emoticon introduced in plurk. There are some people just don’t like it and wanna delete it from their view. This is the CSS I wrote on Firefox to set no-display on it:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("plurk.com") {
img[alt='(troll)'], img[alt='(yay)'], img[alt='(fuu)'], img[alt='(bah)'],
img[alt='(gtroll)'], img[alt='(gyay)'], img[alt='(gfuu)'], img[alt='(gbah)'] {
/* opacity:0.3; */ display:none;
}
}
Installing CSS Code on Firefox
- I use stylish add-on. Install it and you will see the stylish icon on bottom-right of your browser
- Go to plurk page (can be your own home plurk page or others)
- Right click the stylish icon and choose
write new style, then choosefor plurk.com.. - There will be a window to editing the style, write down a name on it and paste the code above to the textbox field
- Click
savebutton
If you want make the troll image to be transparent, you can use opacity option (
change
/* opacity:0.3; */ display:none;
to
opacity:0.3;
).
Recent Comments