Index: /ng/javascript/userscripts/minibuffer.hatena.user.js
===================================================================
--- /lang/javascript/userscripts/minibuffer.hatena.user.js (revision 2448)
+++  (revision )
@@ -1,47 +1,0 @@
-// ==UserScript==
-// @name           Minibuffer Hatena Command
-// @namespace      Minibuffer.Hatena.Command
-// @description    add hatena-bookmark command to Minibuffer.
-// @include        http://*
-// @include        https://*
-// ==/UserScript==
-
-(function(){
-  function _run_hatena_bookmark(u, t) {
-    var link = 'http://b.hatena.ne.jp/add?mode=confirm&is_bm=1&url='+encodeURIComponent(u);
-    if (t) link += '&title='+encodeURIComponent(t);
-    setTimeout(function(){
-      window.open(link, '_blank', 'width=550,height=600,resizable=1,scrollbars=1');
-    }, 10);
-  }
-
-  function hatena_bookmark( stdin ) {
-    if (stdin.length == 0) {
-      _run_hatena_bookmark(location.href, document.title);
-    } else {
-      stdin.forEach(function(obj){
-        if (/^https?:/.test(String(obj))) _run_hatena_bookmark(obj);
-        else if (typeof obj == 'object') {
-          try {
-            var links = obj.getElementsByTagName('a');
-            for(var n = 0, l = links.length; n < l; n++) {
-              var href = links[n].getAttribute("href");
-              if (/^https?:/.test(href)) {
-                _run_hatena_bookmark(href);
-                break;
-              }
-            }
-          } catch(e) { }
-        }
-      });
-    }
-    return stdin;
-  }
-
-  if (typeof window.Minibuffer != 'undefined') {
-    window.Minibuffer.addCommand({
-      name: "hatena-bookmark",
-      command: hatena_bookmark,
-    });
-  }
-})();
