T_R_K

关于我

开发者信息
名称 T_R_K
注册时间 June 29, 2009
开发的附加组件数量 0 个附加组件
开发的附加组件平均得分 尚无评分

我所发表的评价

Extra Folder Columns

评分5星,满分5星

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)

这个评论是针对附加组件的一个早期版本的(0.2)。 

Extra Folder Columns

评分5星,满分5星

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 &lt= 0 ? "" : aNumber;

这个评论是针对附加组件的一个早期版本的(0.2)。 

Extra Folder Columns

评分5星,满分5星

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.2)。