Storage Inspector

The Storage Inspector enables you to inspect various types of storage that a web page can use. Currently it can be used to inspect the following storage types:

  • Cache Storage — any DOM caches created using the Cache API.

  • Cookies — All the cookies created by the page or any iframes inside of the page. Cookies created as a part of response of network calls are also listed, but only for calls that happened while the tool is open.

  • IndexedDB — All IndexedDB databases created by the page or any iframes inside the page, their Object Stores and the items stored in these Object Stores.

  • Local Storage — All local storage items created by the page or any iframes inside the page.

  • Session Storage — All session storage items created by the page or any iframes inside the page.

For the time being, the Storage Inspector only gives you a read-only view of storage. But we’re working to let you edit storage contents in future releases.

Opening the Storage Inspector

You can open the Storage Inspector by selecting the Storage panel in the Web Developer Tools, accessible from the Browser Tools submenu

The Toolbox will appear at the bottom of the browser window, with the Storage Inspector activated. It’s just called “Storage” in the Developer Toolbox.

../../_images/storage_inspector.png

Storage Inspector User Interface

The Storage Inspector UI is split into three main components:

../../_images/storage_labeled.png

Storage tree

The storage tree lists all the storage types that the Storage Inspector can inspect:

../../_images/storage_types.png

Under each type, objects are organized by origin. For cookies, the protocol does not differentiate the origin. For Indexed DB or local storage an origin is a combination of protocol + hostname. For example, “http://mozilla.org” and “https://mozilla.org” are two different origins so local storage items cannot be shared between them.

Under “Cache Storage”, objects are organized by origin and then by the name of the cache:

../../_images/cache_storage.png

IndexedDB objects are organized by origin, then by database name, then by object store name:

../../_images/indexeddb_storage.png

With the Cookies, Local Storage, and Session Storage types, there’s only one level in the hierarchy, so stored items are listed directly under each origin:

../../_images/cookie_storage.png

You can click on each item in the tree to expand or collapse its children. The tree is live, so if a new origin gets added (by adding an iframe, for example), it will be added to each storage type automatically.

Clicking on a tree item will display detailed information about that item in the Table Widget on the right. For example, clicking on an origin which is a child of the Cookies storage type will show all the cookies belonging to that domain.

Table Widget

The table widget displays a list of all the items corresponding to the selected tree item (be it an origin, or database) are listed. Depending on the storage type and tree item, the number of columns in the table might differ.

All the columns in a Table Widget are resizable. You can hide and show columns by context-clicking on the table header and selecting the columns you want to see:

../../_images/cookie_context_menu.png

Add and refresh storage

You’ll also have buttons available to add a new storage entry or refresh the view of the currently viewed storage type where applicable (you can’t add new entries to IndexedDB or Cache):

../../_images/storage_detail_add_refresh.png

Working with the Storage Inspector

The following articles cover different aspects of using the Storage Inspector: