This is a fairly straightforward use of jQuery. First, you look up elements with that class using a class selector, then you use first to ignore all of them except the first one, then you do something with that element.
What you actually want to do is a bit unclear from the question, but there are two likely options:
If you want to actually remove the element, use remove:
$(".ms-webpart-chrome").first().remove();
If you just want to remove that class from it, use removeClass:
$(".ms-webpart-chrome").first().removeClass("ms-webpart-chrome");
Using .first() is the most efficient option in my experience, but it's unlikely to matter. The first bit (looking it up by class and getting just the first one) can also be done using the :first selector (or :eq(0)):
$(".ms-webpart-chrome:first").doSomething();
In both cases, that may force jQuery to use its own selector engine rather than built-in browser features, which may not be ideal. But if you're only doing this once, it would only matter on a truly massive page.
jquery remove element? It gives me this as the first result: api.jquery.com/remove