Is there an easy way to get a list of all the Asset Store packages I own?

I was a Pro subscriber for a few years and I have built up a long list of Assets from the Store. I was hoping there was an easy way to export the list to a spreadsheet so I could get a little more organized but I don’t see one either from withing Unity or through the web. Does anyone know of an was to do this that does not involve a lot of manual typing?

Thanks!

Yes, but you’ll likely want to automate it somewhat. If you visit your downloads page of the revamped Asset Store, select all the assets on the page with click-and-drag, copy and then paste into a text file you end up with something like the following.

Ideally you want to have a script that can strip away the irrelevant portions, but it wouldn’t take long to do it manually.

Goto https://www.assetstore.unity3d.com/en/#!/account/downloads/search=#PACKAGES

run this script in the console

$(“a.title”).each(function(index, anchor) { console.log(anchor.innerText); });

1 Like

Just be aware it doesn’t work with the new store. You’ll have to revert to the old store (My Account → Revert to Old Store).

aha, sorry, havent looked into the new store :smile: