「はてブに追加」アイコンを下に付ける

インストール> http://userscripts.org/scripts/show/6890


// ==UserScript==
// @name add add_hb link
// @namespace http://hp.vector.co.jp/authors/VA024182/
// @description add add_hatena_bookmark link in bottom
// @include *
// ==/UserScript==


hburl='http://b.hatena.ne.jp/add?mode=confirm&title=' +
escape(document.title) + '&url=' +
escape(document.location.href);

var bd, newa, hbIcon;
hbIcon = document.createElement('img');
hbIcon.src = 'http://b.hatena.ne.jp/images/append.gif';
hbIcon.alt = '!b';
hbIcon.title = '!b';
hbIcon.hspace = 5;

newa = document.createElement('a');
newa.href = hburl;
newa.appendChild(hbIcon);
bd = document.getElementsByTagName('body');
bd[0].appendChild(newa);

  
違うところにも表示される、わからない>iframeらしい。adsとか。
追記:左寄せ。タイトルのないフレームでは非表示。更新は多分userscript.orgで。