لتجربة الآلاف من الإضافات المتوفرة هنا، نزّل متصفح موزيلا فَيَرفُكس مجانًا. المتصفح الأسرع والأكثر أمانًا في عالم الإنترنت.

Close

مرحبا بك في إضافات فَيَرفُكس.

اختر من بين الآلاف من المميزات والمظاهر الإضافية واجعل فيرفُكس ملكًا لك.

Close

في الطريق، أثناء تنقلك؟

ألقِ نظرة على موقع إضافات الهواتف الذكية.

Close

Colin Guthrie

معلومات عنّي

معلومات المطور
الاسم Colin Guthrie
مُستخدم منذ مارس 5, 2007
عدد الإضافات التي طورتها 0 إضافة/إضافات
معدّل التقييم من مطوري الإضافات بلا تقييم حتى الآن

تعليقاتي

Bugmail

مقيمة بـ 4 من 5 نجوم

http://colin.guthr.ie/git/misc/thunderbird-bugmail/

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

هذا التعليق كان على إصدارة سابقة من هذه الإضافة (1.1.3)  هذا المستخدم لديه تعليق سابق على هذه الإضافة.

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)

هذا التعليق كان على إصدارة سابقة من هذه الإضافة (0.3)