ফায়ারফক্স অ্যাড-অন

To try the thousands of add-ons available here, download Mozilla Firefox, a fast, free way to surf the Web!

বন্ধ

ফায়ারফক্স অ্যাড-অন এ স্বাগতম।

হাজারো অতিরিক্ত বৈশিষ্ট্য ও স্টাইল থেকে আপনার পছন্দেরটি বেছে নিয়ে ফায়ারফক্সকে নিজের মত করে সাজান।

বন্ধ

On the go?

আমাদের মোবাইল অ্যাড-অন সাইটটি দেখুন।

বন্ধ

Colin Guthrie

আমার সম্বন্ধে

Developer Information
নাম Colin Guthrie
কবে থেকে ব্যবহারকারী মার্চ 5, 2007
Number of add-ons developed 0 এড-ওনস
Average rating of developer's add-ons এখনও রেট করা হয় নি

আমার পর্যালোচনা

Bugmail

Rated 4 out of 5 stars

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

Extra Folder Columns

Rated 5 out of 5 stars

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

This review is for a previous version of the add-on (1.1.3).  This user has a previous review of this add-on.

Extra Folder Columns

Rated 5 out of 5 stars

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)

This review is for a previous version of the add-on (0.3).