onfetch = function (e) { if (/\/clientId$/.test(e.request.url)) { e.respondWith(new Response(e.clientId)); return; } }; onmessage = function (e) { dump("MatchAllPropertiesWorker:" + e.data + "\n"); self.clients.matchAll().then(function (res) { if (!res.length) { dump("ERROR: no clients are currently controlled.\n"); } for (i = 0; i < res.length; i++) { client = res[i]; response = { type: client.type, id: client.id, url: client.url, visibilityState: client.visibilityState, focused: client.focused, frameType: client.frameType, }; client.postMessage(response); } }); };