W3cubDocs

/DOM

Clients.matchAll

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The matchAll() method of the Clients interface returns a Promise for a list of service worker Client objects. Include the options parameter to return all service worker clients whose origin is the same as the associated service worker's origin. If options are not included, the method returns only the service worker clients controlled by the service worker.

Note: The

Syntax

ServiceWorkerClients.matchAll(options).then(function(clients) {
  // do something with your clients list
});

Parameters

options Optional
An options object allowing you to set options for the matching operation. Available options are:
  • includeUncontrolled: A Boolean — if set to true, the matching operation will return all service worker clients who share the same origin as the current service worker. Otherwise, it returns only the service worker clients controlled by the current service worker. The default is false.
  • type: Sets the type of clients you want matched. Available values are window, worker, sharedworker, and all. The default is all.

Return value

A Promise that resolves to an array of Client objects. In Chrome 46/Firefox 54 and later, this method returns clients in most recently focused order, correct as per spec.

Examples

clients.matchAll(options).then(function(clientList) {
  for (var i = 0 ; i < clients.length ; i++) {
    if (clientList[i].url === 'index.html') {
      clients.openWindow(clientList[i]);
      // or do something else involving the matching client
    }
  }
});

Specifications

Specification Status Comment
Service Workers
The definition of 'Clients' in that specification.
Editor's Draft Initial definition

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 40.0[1] 44.0 (44.0)[2][3] No support ? No support
Client objects returned in most recent focus order 46.0 54.0 (54.0) No support ? No support
Feature Android Android Webview Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support No support 40.0[1] 44.0 (44.0) No support ? No support 40.0
Client objects returned in most recent focus order No support 46.0 54.0 (54.0) No support ? No support 46.0
  • [1] The includeUncontrolled option is not supported before Chrome 43.0.
  • [2] The includeUncontrolled option is not supported before Firefox 45.0 (45.0).
  • [3] Service workers (and Push) have been disabled in the Firefox 45 & 52 Extended Support Releases (ESR.)

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Clients/matchAll