Delicious.comでブックマークしたリンクを新しいタブで開くGreasemonkey

更新履歴とコメントはゼロと無限の間のログ » delicious_opentabでどうぞ。

以前はdel.icio.usのリンクを新しいwindowで開くGreasemonkey - かせいさんとこを使っていたんだけど、Delicious.comにリニューアルしてから効かなくなったので自分で作ることにした。

ダウンロード

ソースコード

// ==UserScript==
// @name        delecius_opentab
// @namespace   http://0-oo.net/
// @description A script to open a page in the new tab on Delicious.com.
// @homepage    http://0-oo.net/sbox/greasemonkey/delecious-open-tab-greasemonkey
// @version     0.1.0b
// @include     http://delicious.com/*
// ==/UserScript==
(function(){
    var links = document.getElementsByTagName("a");
    for (var i = 0; i < links.length; i++) {
        if (links[i].href.split("/")[2] != "delicious.com") {
            links[i].target = "_blank";
        }
    }
})();
Wiki内アクセスランキング
www.chimeric.de Driven by DokuWiki Recent changes RSS feed