文書の過去の版を表示しています。
更新履歴とコメントはゼロと無限の間のログ » 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"; } } })();