This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Note: This feature is available in Web Workers.
The getAll() method of the ContentIndex interface returns a Promise that resolves with an iterable list of content index entries.
getAll()
None.
Returns a Promise that resolves with an Array of contentDescription items.
contentDescriptionEach item returned is an Object containing the following data:
idA unique String identifier.
titleA String title of the item. Used in user-visible lists of content.
descriptionA String description of the item. Used in user-visible lists of content.
urlA String containing the URL of the corresponding HTML document. Needs to be under the scope of the current service worker.
category OptionalA String defining the category of content. Can be:
'' An empty String, this is the default.homepagearticlevideoaudioicons OptionalAn Array of image resources, defined as an Object with the following data:
srcA URL String of the source image.
sizes OptionalA String representation of the image size.
type OptionalThe MIME type of the image.
label OptionalA string representing the accessible name of the icon.
No exceptions are thrown. If there are no items in the Content Index, an empty Array is returned.
The below example shows an asynchronous function that retrieves items within the content index and iterates over each entry, building a list for the interface.
async function createReadingList() {
// access our service worker registration
const registration = await navigator.serviceWorker.ready;
// get our index entries
const entries = await registration.index.getAll();
// create a containing element
const readingListElem = document.createElement("div");
// test for entries
if (entries.length === 0) {
// if there are no entries, display a message
const message = document.createElement("p");
message.innerText =
"You currently have no articles saved for offline reading.";
readingListElem.append(message);
} else {
// if entries are present, display in a list of links to the content
const listElem = document.createElement("ul");
for (const entry of entries) {
const listItem = document.createElement("li");
const anchorElem = document.createElement("a");
anchorElem.innerText = entry.title;
anchorElem.setAttribute("href", entry.url);
listElem.append(listItem);
}
readingListElem.append(listElem);
}
}
| Specification |
|---|
| Content Index> # content-index-getall> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
getAll |
No | No | No | No | No | 84 | No | 60 | No | 14.0 | 84 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ContentIndex/getAll