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 add() method of the ContentIndex interface registers an item with the content index.
add(contentDescription)
contentDescriptionAn Object containing the following data:
idA unique String identifier.
titleA String title for 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.
Returns a Promise that resolves with undefined.
TypeErrorThis exception is thrown in the following conditions:
FetchEvent.id, title, description or url parameter are missing, not of type String, or an empty String.url parameter is not same-origin policy with the service worker.icons are not an image type, or fetching one of the items in icons failed with a network error or decode error.Here we're declaring an item in the correct format and creating an asynchronous function which uses the add method to register it with the content index.
// our content
const item = {
id: "post-1",
url: "/posts/amet.html",
title: "Amet consectetur adipisicing",
description:
"Repellat et quia iste possimus ducimus aliquid a aut eaque nostrum.",
icons: [
{
src: "/media/dark.png",
sizes: "128x128",
type: "image/png",
},
],
category: "article",
};
// our asynchronous function to add indexed content
async function registerContent(data) {
const registration = await navigator.serviceWorker.ready;
// feature detect Content Index
if (!registration.index) {
return;
}
// register content
try {
await registration.index.add(data);
} catch (e) {
console.log("Failed to register content: ", e.message);
}
}
The add method can also be used within the service worker scope.
// our content
const item = {
id: "post-1",
url: "/posts/amet.html",
title: "Amet consectetur adipisicing",
description:
"Repellat et quia iste possimus ducimus aliquid a aut eaque nostrum.",
icons: [
{
src: "/media/dark.png",
sizes: "128x128",
type: "image/png",
},
],
category: "article",
};
self.registration.index.add(item);
| Specification |
|---|
| Content Index> # content-index-add> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
add |
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/add