>>822 seahorseで
// ==UserScript==
// @name リンクを新規ウィンドウで開く
// @include
http://* // @type SleipnirScript
// @description リンクを新規ウィンドウで開く
// ==/UserScript==
var openNewWindow = true;//検索結果からのリンクを新しいウィンドウで開く
if (document != null) {
if (openNewWindow) {
var tags = document.links;
for (i in tags) {
if (tags[i].href && !tags[i].href.match(/^
http:\/\/.\//)) {
tags[i].target = "_blank";
}
}
}
}