Greasy Fork is available in English.

VarageSale - Show Titles/Prices & Hide Sold

Add titles and prices to category pages (which inexplicably go missing when logged in), and hide items marked as sold (which otherwise stick around for awile)

// ==UserScript==
// @name         VarageSale - Show Titles/Prices & Hide Sold
// @description  Add titles and prices to category pages (which inexplicably go missing when logged in), and hide items marked as sold (which otherwise stick around for awile)
// @version      0.3
// @author       mica
// @namespace    greasyfork.org/users/12559
// @match        https://www.varagesale.com/*/c/*
// @license      MIT
// ==/UserScript==

$('<style>').html(`
.tooltip.fade.top.in {
    display: none !important;
}
a.thumbnail {
    background: #f5f5f5;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 0;
    border-left: 1px solid #eee;
}
a.title div {
    color: #555;
    padding: 0 5px;
    height: 45px;
    overflow: auto;
    background: #f5f5f5;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
}
a.title:hover {
    text-decoration: none;
}
a.title p {
    font-size: 105%;
    font-weight: bold;
    color: #4cb949;
    margin: 0;
}
`).appendTo('head');
var url;
setInterval(function() {
    if (url !== location.href) {
        url = location.href;
        setTimeout(function() {
            $('a.sold').parent().remove();
            $('a.title').remove();
            $('a.thumbnail').each(function() {
                var link = $(this).attr('href');
                var orig = $(this).attr('data-original-title');
                if (orig.match(/Asking/) !== null) {
                    var title = orig.replace(/: Asking.*/,'');
                    var price = orig.replace(/^.*Asking (?=\$)/,'').replace('.00','');
                    $('<a class="title">').attr('href', link).html(
                        $('<div>').html('<p>'+price+' </p>'+title)
                    ).appendTo($(this).parent());
                } else {
                    $('<a class="title">').attr('href', link).html(
                        $('<div>').html('<br>'+orig)
                    ).appendTo($(this).parent());
                }
            });
        }, 900);
    }
}, 900);