Google履歴を表示しないグリモン

// ==UserScript==
// @name           Google History deletion
// @namespace      http://d.hatena.ne.jp/hateka/
// @description    googleの閲覧回数を消す
// @include        http://www.google.co.jp/*
// ==/UserScript==

var di = document.evaluate('//span[@dir="ltr"]', document, null, 7, null);

for(var i=0;i<di.snapshotLength;i++){
di.snapshotItem(i).style.display="none";

}