公式サイトにあるだろうと思ったら、wiki が落ちているので作りました。
このページのはてなブックマーク一覧
var sp = new ActiveXObject("Sleipnir.API");
var id = sp.GetDocumentID(sp.ActiveIndex);
var document = sp.GetDocumentObject(id);
if (document == null) {
sp.MessageBox("documentオブジェクトを作成できません");
} else {
var window = sp.GetWindowObject(id);
var url = window.location.href;
sp.NewWindow('http://b.hatena.ne.jp/entrylist?url=' + url, true);
document = null;
}
sp = null;
このドメインのはてなブックマーク一覧
var sp = new ActiveXObject("Sleipnir.API");
var id = sp.GetDocumentID(sp.ActiveIndex);
var document = sp.GetDocumentObject(id);
if (document == null) {
sp.MessageBox("documentオブジェクトを作成できません");
} else {
var window = sp.GetWindowObject(id);
var url = window.location.href.match(/http[^/]+\/\/[^/]+/);
sp.NewWindow('http://b.hatena.ne.jp/entrylist?url=' + url, true);
document = null;
}
sp = null;
Sleipnir API の使い方は、http://vcsel.main.jp/archives/200401/sleipnir.shtml にあるスクリプトを参考にさせていただきました。

コメントする