--- title: Clients slug: Web/API/Clients translation_of: Web/API/Clients ---
{{SeeCompatTable}}{{APIRef("Service Workers API")}}
The Clients
interface of the Service Workers API represents a container for a list of {{domxref("Client")}} objects.
id
and returns it in a {{jsxref("Promise")}}.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. clients.matchAll(options).then(function(clients) { for(i = 0 ; i < clients.length ; i++) { if(clients[i] === 'index.html') { clients.openWindow(clients[i]); // or do something else involving the matching client } } });
Specification | Status | Comment |
---|---|---|
{{SpecName('Service Workers', '#clients', 'Clients')}} | {{Spec2('Service Workers')}} | Initial definition |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | {{CompatChrome(40.0)}} | {{ CompatGeckoDesktop("44.0") }} | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | {{CompatUnknown}} | {{ CompatGeckoMobile("44.0") }} | {{ CompatVersionUnknown }} | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} | {{CompatUnknown}} |