// ==UserScript==
// @name        Del.icio.us Show Only Popular Entry
// @namespace   http://opera.higeorange.com/
// @description del.icio.usでちょー人気のあるポストのみ表示
// @include     http://del.icio.us/subscriptions/*
// @include     http://del.icio.us/network/*
// @include     http://del.icio.us/tag/*
// ==/UserScript==

(function() {
    var post = document.evaluate('//li[@class="post"]', document, null ,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
    for(var i=0,len=post.snapshotLength;i<len;i++) {
        var us = document.evaluate('.//a[@class="pop"]', post.snapshotItem(i), null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
        if(us){
            var uc = us.innerHTML.match(/\d+/);
            if(uc < 1000)
                post.snapshotItem(i).style.display = 'none';
        } else {
            post.snapshotItem(i).style.display = 'none';
        }
    }
})();
