You are in the IDE, and you want to see what is in a container without switching to a browser or a desktop app. There are three ways to do it.
The official plugin covers a lot of Azure — app services, functions, virtual machines, and storage among them. If you deploy from the IDE, it is the one to have. Two things to know before installing: it signs in through the interactive Azure flow, and it enumerates your subscriptions when it connects, which on a large tenant is noticeable at startup.
az storage blob list --account-name <account> --container-name <container> --output table
No plugin, no extra process. It is the right answer for a one-off check. It is a poor fit for walking a folder tree, because every level is another command.
A plugin that only reads blob storage is a much smaller thing: attach an account with a key, walk containers like folders, preview a file. That is the shape of ours, listed below. It does not deploy anything and does not manage other Azure resources — if you need those, you want the official toolkit.
Microsoft ships Azurite, a free local emulator for Blob, Queue, and Table storage. It needs no Azure account and no card:
npm install azurite
npx azurite-blob --location ./azurite-data --blobPort 10000
Point your tool at http://127.0.0.1:10000 with the account name
devstoreaccount1 and the well-known development key from Microsoft's Azurite
documentation. It is the cheapest way to see whether a tool does what you need before you
attach anything real.
These guides are written by sellerkit. We publish JetBrains IDE plugins, including one for Azure Blob Storage, listed below. Everything above works whether or not you use it.
Our plugin declares no upper IDE build limit, makes no network call until you press Connect, and each release is run through the JetBrains Plugin Verifier against multiple IDE versions before it ships.