Colin Guthrie
내 정보
이름 | Colin Guthrie |
---|---|
가입한 날짜 | 3월 5, 2007 |
개발한 부가 기능 수 | 부가 기능 0개 |
이 개발자의 부가 기능의 평균 별점 | 아직 별점 없음 |
내 검토
Extra Folder Columns
5점중 5점 받음
Great little plugin.
I made a few adjustments to it recently to add support for renaming newsgroups to more friendly names!
http://colin.guthr.ie/2011/08/thunderavian-renaming-thunderbird-newsgroups/
Hope it gets merged into the official package, but in the mean time people can see my change via the above link :)
Hope some people fine it useful.
Col
Extra Folder Columns
5점중 5점 받음
Simple Patch for RC2 to display folder names properly.
--- chrome/content/main.js.orig 2009-12-08 11:15:35.000000000 +0000
+++ chrome/content/main.js 2009-12-08 11:33:34.000000000 +0000
@@ -11,9 +11,15 @@
switch (aColName) {
case "folderNameCol":
- let text = this._folder.abbreviatedName;
- if (this._useServerName)
- text += " - " + this._folder.server.prettyName;
+ let text;
+ if (this.useServerNameOnly) {
+ text = this._folder.server.prettyName;
+ }
+ else {
+ text = this._folder.abbreviatedName;
+ if (this.addServerName)
+ text += " - " + this._folder.server.prettyName;
+ }
// If the unread column is shown, we don't need to add the count
if (!document.getElementById("folderUnreadCol").hidden)
모음집을 제작하시려면 Mozilla 부가 기능 계정이 있어야 합니다.
아니면 현재 사용중인 계정으로 로그인 하세요