do you know bookmarklets? that _ancient-browsers_ technology 😏
```javascript
javascript:(function(){
var expected_domain = "https://www.pathofexile.com/account/view-stash/";
if (document.URL.indexOf(expected_domain) != 0) {
alert("this bookmarklet is expected to run at page: " + expected_domain);
} else {
var stash = document.querySelectorAll("div.stashContents");
var items = stash[0].querySelectorAll(".unowned");
items.forEach(it => stash[0].removeChild(it));
}
})();
```


