Feed-button в адресной стоке(Firefox 4 +)
Автор: banthaz, Andrey_Krropotkin, bunda1.
Описание: Kод показывает в адресной строке feed-button(значок "Подписаться на ленты новостей") перед кнопкой star-button(звёздочка). Если на текущей странице нет ленты новостей feed-button будет спрятан.
Использование: положите код в любую Custom Buttons кнопку, в инициализацию. Не обязательно создавать новую CB кнопку, можно использовать уже существующую. После установки кода надо сделать рестарт!

Выделить код

Код:

// feed-button в адресной стоке ........................................
var bar = document.getElementById("nav-bar");
bar.currentSet = "feed-button," + bar.getAttribute("currentset");
bar.setAttribute("currentset",bar.currentSet);
document.persist(bar.id,"currentset");
document.getElementById("urlbar-icons").insertBefore(document.getElementById("feed-button"),document.getElementById("star-button"));

//стиль.......
(function(css) {
      var pi = document.createProcessingInstruction(
      'xml-stylesheet',
      'type="text/css" href="data:text/css;utf-8,' + encodeURIComponent(css) + '"'
    );
    return document.insertBefore(pi, document.documentElement);
  }
)('\
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);\n\
#feed-button { height: 24px !important; min-width: 0 !important; margin: 0 !important; padding: 0 !important;\n\
-moz-appearance: none !important; background: none !important; border: none !important; box-shadow: none !important; }\n\
#feed-button > image { display: -moz-box !important; margin: 0 !important; }\n\
#feed-button > label, #feed-button[disabled] { display: none !important; }\n\
');

Если проблемы с отображением feed-button. Сжата сильно например.
Измените  height: 16px !important; на height: 24px !important;

feas
Спасибо :), я исправил.