ダイアリー、グループのヘッダ検索窓をarchive検索にするグリースモンキー

をつくってみたよ。

// Copyright (C) Yasuhiro Onishi
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
// ==UserScript==
// @name          Hatena Diary Archive Search
// @namespace     http://d.hatena.ne.jp/onishi/
// @include       http://d.hatena.ne.jp/*
// @include       http://*.g.hatena.ne.jp/*
// @include       https://*.g.hatena.ne.jp/*
// ==/UserScript==

(function () {
    var form = document.forms[0];
    var input = document.createElement("input");
    input.type = "hidden";
    input.name = 'type';
    input.value = 'list';
    form.appendChild(input)
})();

普通の日記検索ができなくなるので注意。