За да изпробвате хилядите добавки, достъпни тук изтеглете Mozilla Firefox – бърз и свободен начин да разглеждате Мрежата!
ЗатварянеДобре дошли в Добавки за Firefox.
Изберете измежду хилядите възможности и стилове, за да направите Firefox изцяло ваш.
ЗатварянеОтзив за Extra Folder Columns от Colin Guthrie
Оценена с 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 Добавки.