Furl (www.furl.net) has a toolbar that works with IE and firefox, or you can drag their bookmarklets to a moz-style sidebar. You can save these bookmarkets in KM but I think it's nicer to have separate Furl tool menus. So here are some I put together:
----- In macros.cfg:
### FURL stuff
FurlQuick{
$old=getclipboard();setclipboard("");id(ID_EDIT_COPY);$t=getclipboard();setclipboard($old);
$pu=getpref(BOOL, $popups);
$pu=="true"?setpref(BOOL, $popups, false):"";
open("javascript:d=document;$furl='
http://www.furl.net/store?s=f&to=0&ti='+escape(d.title)+'&u='+escape(d.location.href)+'&d='+new Date()+'&c='+escape('".$t."');function FurlIt(){window.open($furl,'furlit','scrollbars=no,width=325,height=100,left=75,top=20,status=no,resizable=yes')};void(FurlIt());");
$pu=="true"?setpref(BOOL, $popups, true):"";
}
FurlBasic{
$old=getclipboard();setclipboard("");id(ID_EDIT_COPY);$t=getclipboard();setclipboard($old);
$pu=getpref(BOOL, $popups);
$pu=="true"?setpref(BOOL, $popups, false):"";
open("javascript:d=document;$furl='
http://www.furl.net/storeIt.jsp?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape('".$t."');function FurlIt(){window.open($furl,'furlit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes')};void(FurlIt());");
$pu=="true"?setpref(BOOL, $popups, true):"";
}
FurlFull{
id(ID_SELECT_URL); id(ID_EDIT_COPY); $theurl = getclipboard();
$pu=getpref(BOOL, $popups);
$pu=="true"?setpref(BOOL, $popups, false):"";
open("javascript:function FurlIt(){var hd=document.getElementsByTagName('head')[0];var s=document.createElement('script');s.setAttribute('src', '
http://www.furl.net/resources/furlItCompleteMoz.jsp');s.setAttribute('type','text/javascript');hd.appendChild(s);}void(FurlIt());");
$pu=="true"?setpref(BOOL, $popups, true):"";
}
FurlView{
opennew("
http://www.furl.net/view.jsp"
;
}
----- In menus.cfg:
Furl{
macros(FurlQuick, Quick Save)
macros(FurlBasic, Basic Save)
macros(FurlFull, Full Save)
-
macros(FurlView, View My Archive)
}
# and locate the '&Tools{' menu definition and add after

ave Options
:Furl
# and locate the 'DocumentPopup' menu definition and add before !Fullscreen
:Furl
# and locate the 'FrameDocumentPopup' menu definition and add before !Fullscreen
:Furl
Hope this helps any other KM-using Furlers out there
Iain