unDonut用 del.icio.us と tumblr のスクリプト
del.icio.us に今開いているページを追加する
var unDonut = new ActiveXObject("DonutP.API");
var nIndex = unDonut.TabIndex;
var document = unDonut.GetDocumentObject(nIndex);
var window = unDonut.GetWindowObject(nIndex);
window.open('http://del.icio.us/post?v=4;url='+encodeURIComponent(document.URL)+';title='+encodeURIComponent(document.title));
tumblr に今開いてるページを Add a new Link & 選択範囲を Add a new Quote する(たぶん公式のブックマークレットと同じ動作)
var unDonut = new ActiveXObject("DonutP.API");
var nIndex = unDonut.TabIndex;
var document = unDonut.GetDocumentObject(nIndex);
var window = unDonut.GetWindowObject(nIndex);
window.open('http://www.tumblr.com/share'+'?v=3&u='+encodeURIComponent(document.location.href) +'&t='+encodeURIComponent(document.title) +'&s='+encodeURIComponent(document.selection?document.selection.createRange().text:0));
はてブに追加するやつ

