Witamy na witrynie Dodatki dla programu Thunderbird.
Dodaj dodatkowe funkcje i motywy, by dostosować program Thunderbird do swoich potrzeb.
ZamknijT_R_K
O mnie
Nazwa | T_R_K |
---|---|
Użytkownik od | Cze. 29, 2009 |
Liczba utworzonych dodatków | 0 dodatki |
Średnia ocena dodatków autora | Brak ocen |
Moje opinie
Extra Folder Columns
Oceniono na 5 z 5 możliwych gwiazdek
Great plugin, it makes keeping track of how big my mail boxes are getting a lot easier to manage, thanks.
I wanted zeros removing too (especially from the top level account folders) so I've altered the code.
To simply get rid of zeros, just alter line 9 of chrome/content/main.js and change:
return aNumber == -1 ? "" : aNumber;
to
return aNumber {less than}= 0 ? "" : aNumber;
(substitute {less than} for the less than symbol)
Extra Folder Columns
Oceniono na 5 z 5 możliwych gwiazdek
Great plugin thanks.
I wanted zeros removing too (especially from the top level account folders) so I've altered the code.
To simply get rid of zeros, just alter line 9 of chrome/content/main.js and change:
return aNumber == -1 ? "" : aNumber;
to
return aNumber <= 0 ? "" : aNumber;
Extra Folder Columns
Oceniono na 5 z 5 możliwych gwiazdek
Great plugin thanks.
I wanted zeros removing too (especially from the top level account folders) so I've altered the code.
To simply get rid of zeros, just alter line 9 of chrome/content/main.js and change:
return aNumber == -1 ? "" : aNumber;
to
return aNumber
Aby tworzyć własne kolekcje, musisz mieć konto na witrynie Mozilla Add-ons.